/*
 *  Syntaksi.com Modern UI Theme (Tailwind-based)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.view-hidden {
    display: none !important;
}

/* Custom Print Styles */
@media print {
    body {
        background-color: white !important;
        color: black !important;
    }

    .no-print {
        display: none !important;
    }

    .print-only {
        display: block !important;
    }

    .shadow-xl, .shadow-lg, .shadow-sm, .shadow {
        box-shadow: none !important;
    }

    /* Force background colors for print if browser allows */
    .bg-slate-50 {
        background-color: #f8fafc !important;
    }
    
    /* Ensure tables print nicely */
    table {
        width: 100% !important;
        border-collapse: collapse !important;
    }
    th, td {
        border: 1px solid #e2e8f0 !important;
        padding: 8px !important;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
