.chart-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
     width: 100%;
    max-width: 100%;
    overflow: visible;
}

.line-chart-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
     width: 100%;
    max-width: 100%;
    overflow: visible;
}

.chart-box {
    flex: 1 1 500px;
    min-width: 280px;
    max-width: 600px;
    background-color: #1e1e2f;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
        position: relative;
    overflow: visible;
    z-index: 1;
}

.line-chart-box {
    flex: 1 1 500px;
    background-color: #1e1e2f;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
        position: relative;
    overflow: visible;
    z-index: 1;
}

.apexcharts-tooltip {
    z-index: 9999 !important;
}
@media (max-width: 960px) {
    .chart-box {
        flex: 1 1 100%;
        max-width: 100%;
        margin: auto;
    }
}
