.sr_dash_main_wrapper {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 20px 0;
    background: #fdfdfd;
}

.sr_dash_section_group {
    margin-bottom: 50px;
}

.sr_dash_title_h2 {
    font-size: 20px;
    font-family: sans-serif;
    color: #333;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sr_dash_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sr_dash_card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 4px;
    padding: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    /* width: calc(33.333% - 13.34px); */
    width: calc(50.333% - 12.34px);
}

.sr_dash_metric_label {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    text-align: center;
}

.sr_dash_canvas_box {
    flex-grow: 1;
    position: relative;
    color: #000;
}

/* Overlay for empty graphs */
.sr_dash_no_data_overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #94a3b8;
    font-style: italic;
    font-size: 14px;
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 992px) {
    .sr_dash_card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .sr_dash_card {
        width: 100%;
    }
}


.is-layout-constrained>.main-div-financial {
    max-width: none !important;
    width: 90% !important;

}



#SR_DASHBOARD_ROOT {
    max-width: 1045px;
    width: 100%;
    margin: 0 auto !important;
    float: none !important;
}