@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

.card-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

/* Toast Animation */
@keyframes slideIn {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.toast-in {
    animation: slideIn 0.3s ease-out forwards;
}

/* Modal Overlay */
.modal-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}
