/* ========================================
   CUSTOM SCROLLBAR - Zebronics Style
   ======================================== */

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* For dark sections, use dark scrollbar */
.dark-section::-webkit-scrollbar-track {
    background: #2b2b2b;
}

.dark-section::-webkit-scrollbar-thumb {
    background: #555;
    border: 2px solid #2b2b2b;
}

.dark-section::-webkit-scrollbar-thumb:hover {
    background: #888;
}
