/* chart.css */

.chart-section {
    margin-bottom: 0;
}

.chart-area {
    width: calc(100% - 2rem * 2 );
    min-height: 540px;
    background: var(--color-bg-card);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    padding: 2rem 1.5rem 1.5rem;
    margin: 0 auto;
    transition: box-shadow 0.2s ease;
}

.chart-area:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.05);
}

.chart-annotation {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 500;
    line-height: 1.6;
    padding: 0.5rem 1rem;
}

.apexcharts-tooltip-marker::before {
    font-size: 26px !important;
}

@media screen and (max-width: 10000px) {
    html.android .apexcharts-tooltip-marker::before {
        font-size: 14px !important;
    }
}