/* Scroll minimalista */
#content-container::-webkit-scrollbar {
    width: 6px;  /* grosor reducido */
}

#content-container::-webkit-scrollbar-track {
    background: transparent;  /* sin fondo */
}

#content-container::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3); /* color claro semitransparente */
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

#content-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.6); /* más visible al pasar el ratón */
}





/* Scrollbar principal - global */
body::-webkit-scrollbar, html::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

body::-webkit-scrollbar-thumb:hover, html::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Para Firefox */
body, html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}
