/* .dashboard-container {
    padding: 2rem;
} */

.filter-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(116, 141, 146, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 15px;
    margin-bottom: 0.5rem;
    color: #124E66;
    display: inline-block;
    margin-right: 0.5rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #124E66;
    display: inline-block;
}

.stat-label {
    color: #748D92;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.chart-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filter-label {
    font-weight: 500;
    color: #124E66;
    margin-bottom: 0.5rem;
}

.form-select,
.form-control {
    border-radius: 8px;
    border: 1px solid #D3D9D4;
    padding: 0.5rem 1rem;
}

.form-select:focus,
.form-control:focus {
    border-color: #124E66;
    box-shadow: 0 0 0 0.2rem rgba(18, 78, 102, 0.25);
}

.btn-filter {
    background-color: #124E66;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background-color: #2E3944;
    transform: translateY(-2px);
}

.progress {
    height: 8px;
    margin-top: 0.5rem;
}

.progress-bar {
    background-color: #124E66;
}

.chart-container {
    height: 400px;
    position: relative;
}