/* Ensure Tailwind utilities are loaded last */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom overrides */
.nig-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.idea-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.idea-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.structure-table table td {
    @apply py-3 px-4;
}

.structure-table tr:not(:last-child) {
    @apply border-b border-gray-200;
}

.design-steps ol li {
    @apply transition-all duration-200;
}

.design-steps ol li:hover {
    @apply translate-x-2;
}

.marketing-grid span {
    @apply transition-transform duration-150 ease-in-out;
}

.marketing-grid span:hover {
    @apply -translate-y-px;
}

/* Print styles */
@media print {
    .nig-container {
        @apply max-w-none p-0;
    }
    
    #nig-generate {
        @apply hidden;
    }
    
    .idea-card {
        @apply shadow-none border-0;
    }
}