/* Custom scrollbar styling */
.scrollable-container {
    scrollbar-width: auto;  /* Changed from thin to auto */
    scrollbar-color: #1a4c5c #f8f9fa;
    overflow: scroll !important;  /* Always show scrollbars */
}

.scrollable-container::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    background-color: #f8f9fa;
}

.scrollable-container::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 4px;
}

.scrollable-container::-webkit-scrollbar-thumb {
    background: #1a4c5c;
    border-radius: 4px;
    border: 3px solid #f8f9fa;  /* Added border for better visibility */
}

.scrollable-container::-webkit-scrollbar-thumb:hover {
    background: #153e4b;
}

/* Force scrollbar corners to be visible */
.scrollable-container::-webkit-scrollbar-corner {
    background: #f8f9fa;
} 