/* This CSS File is for the substitute.component.html Leave list styles */
.sr-d-list {
    max-height: 200px;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    padding: 5px;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
}

.sr-d-list::-webkit-scrollbar {
    width: 6px;
    /* Set the width of the scrollbar */
}

.sr-d-list::-webkit-scrollbar-thumb {
    background-color: #6f6f6f;
    /* Set a light color for the thumb */
    border-radius: 3px;
    /* Set a small border radius for the thumb */
}

.sr-d-list::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    /* Set a light color for the track */
}

.sr-d-list::-webkit-scrollbar-thumb:hover {
    background-color: #888;
    /* Set a slightly darker color on hover */
}

.sr-d-list::-webkit-scrollbar-corner {
    background-color: #f5f5f5;
    /* Set the color of the scrollbar corner (only visible when both scrollbars are present) */
}