.chart-page-container .header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.chart-page-container select {
    padding: 12px 24px;
    border: 0;
    background-color: #fff;
    border-radius: 5px;
}

.chart-page-container .chartDrawer select {
    background-color: #eff2f7;
}

.chart-page-container .salesChart {
    height: 500px;
    background: #fff;
    border-radius: 10px;
    padding: 45px 15px;
}

/* Drawer */

.chart-page-container .chartDrawer {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
    transition: right .35s ease;
    z-index: 999;
    overflow-y: auto;
}

.chart-page-container .chartDrawer.open {
    right: 0;
}

.chart-page-container .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid #e5e5e5;
}

.chart-page-container .drawer-header button {
    border: none;
    background: #ef4444;
    cursor: pointer;
    border-radius: 50%;
    color: #fff;
    width: 36px;
    height: 36px;
    font-size: 18px;
    transition: all linear .2s;
}

.chart-page-container .drawer-header button:hover {
    opacity: 0.8;
}

.chart-page-container .summary-cards {
    display: flex;
    gap: 15px;
    padding: 20px;
}

.chart-page-container .card-details {
    flex: 1;
    background: #eff2f7;
    border-radius: 5px;
    padding: 15px;
}

.chart-page-container .card-details span {
    color: #777;
    font-size: 13px;
}

.chart-page-container .card-details h4 {
    margin-top: 5px;
}

.chart-page-container #monthlyChart {
    height: 400px;
    margin: 20px;
}

/* FYI, Not recommended to hide the watermark(highcharts.com) */
.highcharts-credits,
.highcharts-title,
.highcharts-axis-title {
    display: none;
}

@media(max-width:720px) {
    .chart-page-container .summary-cards {
        flex-direction: column;
    }
}

@media(max-width:767px) {
    .chart-page-container .chartDrawer {
        width: 85%;
        right: -100%;
    }
}