/**
 * Charts Page CSS
 */

.chart-container {
    position: relative;
    height: 350px;
    width: 100%;
}

.chart-card {
    margin-bottom: 1.5rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-download-chart {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

@media (max-width: 991px) {
    .chart-container {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .chart-container {
        height: 250px;
    }
}

.loading-overlay-chart {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.stats-badge {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
}
