body {
    font-family: 'Inter', sans-serif;
    background-color: #FDFBF7;
    color: #4A4A4A;
}
.chart-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    height: 320px;
    max-height: 400px;
}
@media (min-width: 768px) {
    .chart-container {
        height: 400px;
    }
}
.filter-btn {
    transition: all 0.2s ease-in-out;
}
.filter-btn.active {
    background-color: #4E8D7C;
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}
.bank-card {
    transition: all 0.3s ease-in-out;
    border: 1px solid #EAEAEA;
}
.bank-card.highlight {
    border-color: #4E8D7C;
    box-shadow: 0 8px 25px -5px rgba(78, 141, 124, 0.2), 0 10px 10px -5px rgba(78, 141, 124, 0.04);
    transform: translateY(-4px);
}
.bank-card .details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.bank-card.open .details {
    max-height: 1000px;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.accordion-item.open .accordion-content {
    max-height: 500px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #4E8D7C;
}
input:checked + .slider:before {
    transform: translateX(22px);
}
