.generic-custom-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.generic-custom-scrollbar:active {
    cursor: grabbing;
}

.generic-custom-scrollbar::-webkit-scrollbar {
    display: none;
}

.generic-custom-scrollbar-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.generic-custom-scrollbar-container.horizontal {
    padding-bottom: 12px;
}

.generic-custom-scrollbar-container.horizontal .generic-custom-scrollbar-track {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background-color: #f1f1f1;
    border-radius: 3px;
}

.generic-custom-scrollbar-container.horizontal .generic-custom-scrollbar-thumb {
    position: absolute;
    height: 100%;
    background-color: #bcc0c3;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.generic-custom-scrollbar-container.vertical {
    padding-right: 12px;
}

.generic-custom-scrollbar-container.vertical .generic-custom-scrollbar-track {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 6px;
    background-color: #f1f1f1;
    border-radius: 3px;
}

.generic-custom-scrollbar-container.vertical .generic-custom-scrollbar-thumb {
    position: absolute;
    width: 100%;
    background-color: #bcc0c3;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.generic-custom-scrollbar-thumb:hover {
    background-color: #6e757c;
}

.generic-custom-scrollbar-thumb:active {
    background-color: #085ef1;
}
