/* Global Scrollbar Styles - High Contrast */
::-webkit-scrollbar {
    width: 12px !important; /* Wider for accessibility */
    height: 12px !important;
}

::-webkit-scrollbar-track {
    background: transparent !important; /* Made transparent per user request */
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #888 !important; /* Light gray thumb */
    border-radius: 6px;
    border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold, #ffd700) !important;
    border-color: #000;
}

/* Firefox Support */
* {
    scrollbar-width: auto;
    scrollbar-color: #888 transparent;
}

/* Force scrollbar display class */
.socketing-list-container {
    overflow-y: auto !important; /* ONLY show if needed */
    flex: 1;
    min-height: 200px;
    max-height: 450px;
}

/* Hide scrollbar buttons (arrows) */
::-webkit-scrollbar-button {
    display: none !important;
}
