/* Style for custom scrollbar */
[data-custom-scrollbar] {
    position: relative;
}

[data-custom-scrollbar]::-webkit-scrollbar {
    display: none;
}

[data-custom-scrollbar] .scrollbar-track {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* Customize width as needed */
    height: 8px;
    background-color: #f4f4f4;
    border-radius: 4px;
}

[data-custom-scrollbar] .scrollbar-thumb {
    z-index: 1;
    position: absolute;
    height: 100%;
    width: 140px; /* Customize width as needed */
    background-color: #855151;
    border-radius: 4px;
    cursor: pointer;
}
