/* Custom scrollbar styling for WebKit browsers */
#debt_cards_container::-webkit-scrollbar {
    width: 6px;
}

#debt_cards_container::-webkit-scrollbar-track {
    background: #1e1e24;
    border-radius: 3px;
}

#debt_cards_container::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

#debt_cards_container::-webkit-scrollbar-thumb:hover {
    background-color: #777;
}
