/* style.css */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar for better UI feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8fafc; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* SweetAlert2 overrides for premium feel */
div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 20px !important;
    padding: 2em !important;
    font-family: 'Inter', sans-serif !important;
}

.swal2-title {
    font-weight: 800 !important;
    color: #111827 !important;
}

.swal2-confirm, .swal2-cancel {
    border-radius: 9999px !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
}
