﻿/* Custom styles to complement Tailwind */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar for a more modern look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #9ca3af;
    }

/* Simple animation for elements fading in */
.fade-in {
    animation: fadeIn ease 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure the modal is centered and has a backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}