/* ═══════════════════════════════════════════════════════
   Editora GEA — Custom Scrollbar
   ═══════════════════════════════════════════════════════ */

/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #080d1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1e3a5f 0%, #2a5f9e 50%, #1e3a5f 100%);
    border-radius: 10px;
    border: 2px solid #080d1a;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2a5f9e 0%, #b8974a 50%, #2a5f9e 100%);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #c9a84c 0%, #e8d48b 50%, #c9a84c 100%);
}

/* Corner */
::-webkit-scrollbar-corner {
    background: #080d1a;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #2a5f9e #080d1a;
}
