/* ===================================================
   MU Huyền Thoại - Custom Premium Scrollbar
   Coordinated with Deep Navy & Ice Blue Theme
   =================================================== */

/* 1. Global Scrollbar for the Entire Browser Window */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #080d16; /* Same as the midnight body background */
}

::-webkit-scrollbar-thumb {
    background: #1e293b; /* Sleek navy dark grey thumb */
    border: 2px solid #080d16;
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #38bdf8; /* Glowing Ice Blue hover */
}

/* Firefox Global support */
html {
    scrollbar-width: thin;
    scrollbar-color: #1e293b #080d16;
}


/* 2. Utility Class: .custom-scrollbar (For compact scrollable elements like lists) */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #1e293b #0f1726;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px; /* Sleeker and thinner for compact widgets */
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #0f1726; /* Matches card dark navy background */
    border-radius: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #2563eb; /* Royal Blue thumb */
    border-radius: 8px;
    border: 1px solid #0f1726;
    transition: background 0.2s ease;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #38bdf8; /* Glowing Ice Blue hover */
}
