/* Custom Thin Scrollbar */
.thin-scrollbar::-webkit-scrollbar {
    width: 5px;
    /* Adjust scrollbar width */
}

.thin-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Track color */
    border-radius: 10px;
}

.thin-scrollbar::-webkit-scrollbar-thumb {
    background: #888;
    /* Scrollbar color */
    border-radius: 10px;
}

.thin-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Scrollbar color on hover */
}