* {
    font-family: 'Inter', sans-serif;
}

@media print {
    body {
        background: white;
    }

    .no-print {
        display: none !important;
    }

    .print-only {
        display: block !important;
    }
}

.toast-message {
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.subject-item {
    transition: all 0.3s ease;
}

.subject-item:hover {
    transform: translateX(5px);
    background-color: #f8fafc;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
}

/* PDF Preview Styles */
.pdf-preview {
    background: white;
    padding: 20px;
    border-radius: 10px;
}