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

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

::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 10px;
    border: 2px solid #f5f7fa;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #0066cc;
}

::-webkit-scrollbar-corner {
    background: #f5f7fa;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #f5f7fa;
}

/* Table wrapper specific scrollbar */
.table-wrapper::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 8px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 8px;
    border: 2px solid #ffffff;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #0066cc;
}

.table-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #ffffff;
}

/* Main container scrollbar */
main::-webkit-scrollbar {
    width: 12px;
}

main::-webkit-scrollbar-track {
    background: #ffffff;
}

main::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 10px;
    border: 2px solid #ffffff;
}

main::-webkit-scrollbar-thumb:hover {
    background: #0066cc;
}

main {
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #ffffff;
}


