/* public/css/main.css */
body {
    font-family: 'Poppins', sans-serif;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #C45528;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A04420;
}

/* SweetAlert2 Custom */
.swal2-popup {
    background: #2a2a2a !important;
    color: #fff !important;
    border: 1px solid rgba(196, 85, 40, 0.3);
}

.swal2-title {
    color: #fff !important;
}

.swal2-html-container {
    color: #b0b0b0 !important;
}

.swal2-confirm {
    background: #C45528 !important;
}

.swal2-cancel {
    background: #3a3a3a !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}