/* style.css */
/* This file is for custom styles that are not covered by Tailwind CSS. */

/* Hides elements */
.hidden {
    display: none;
}

/* Basic styling for the body to use the Inter font defined in index.html */
body {
    font-family: 'Inter', sans-serif;
}

/* Custom scrollbar for modals if they overflow */
.modal-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.modal-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-scrollbar::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
}
