/* Custom scrollbar optimized for black themes */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: #27272a; /* Zinc 800 */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3f3f46; /* Zinc 700 */
}

/* Fallback minimum width to ensure table integrity on mobile */
table {
    min-width: 720px;
}