
/* Stili per la scrollbar personalizzata */
* {
    scrollbar-width: thin;
    scrollbar-color: #494949 #2a2a2a;
}

*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
    background: #494949;
    border-radius: 4px;
    border: 1px solid #444243;
}

*::-webkit-scrollbar-thumb:hover {
    background: #666565;
}

*::-webkit-scrollbar-corner {
    background: #2a2a2a;
}

/* Stili specifici per le select con molte opzioni */
.form-group select {
    scrollbar-width: thin;
    scrollbar-color: #494949 #2a2a2a;
}