/* Chart Label Colors - Using Selected Theme Color */

/* ApexCharts Labels - Uses selected theme color from app-theme-list */
.apexcharts-text,
.apexcharts-legend-text,
.apexcharts-xaxis-label,
.apexcharts-yaxis-label,
.apexcharts-datalabel-label,
.apexcharts-datalabel-value,
.apexcharts-pie-label,
.apexcharts-radialbar-label,
.apexcharts-treemap-label,
.apexcharts-xaxis text,
.apexcharts-yaxis text {
    fill: var(--bs-theme) !important;
    color: var(--bs-theme) !important;
}

/* ApexCharts Title - Uses selected theme color */
.apexcharts-title-text {
    fill: var(--bs-theme) !important;
}

/* ApexCharts Grid Lines - Subtle using selected theme color */
.apexcharts-gridline {
    stroke: var(--bs-theme) !important;
    opacity: 0.15;
}

/* Tooltip - Using theme colors */
.apexcharts-tooltip {
    background: var(--bs-body-bg) !important;
    color: var(--bs-body-color) !important;
    border: 1px solid var(--bs-theme) !important;
}

/* Data labels - Uses selected theme color */
.apexcharts-datalabel {
    fill: var(--bs-theme) !important;
}
.hidden{
    display: none !important;
}
