@tailwind base;
@tailwind components;
@tailwind utilities;

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Background della scrollbar */
::-webkit-scrollbar-track {
    background: #f4f4f4; /* Light mode */
}

.dark ::-webkit-scrollbar-track {
    background: #1f2937; /* Dark mode */
}

/* Thumb della scrollbar */
::-webkit-scrollbar-thumb {
    background: #cccccc; /* Light mode */
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #4b5563; /* Dark mode */
}

::-webkit-scrollbar-thumb:hover {
    background: #888888; /* Light mode hover */
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #6b7280; /* Dark mode hover */
}
