/* ------ setting -------------- */
.setting-page-container{
    height: 95vh; 
    width: 97.5vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content:flex-start;  
    background-color: var(--primary-background-color);
    padding: 1px;
    overflow-x: auto;
    overflow-y: hidden;
    box-sizing: border-box; 
}

.setting-haed-container{
    width: 100%;
    /* min-width: 1200px; */
    height: 4.5vh; 
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content:flex-start;  
    background-color: var(--div-head-first-background-color);
    gap: 2px;
    padding-left: 2px;
    border: var(--div-border);
    border-radius: 5px;
    box-sizing: border-box; 
}

.setting-table-container {
    width: 99.9%;
    height: 90.3vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: var(--div-border);
    border-radius: 5px;
    overflow-x: auto;
    overflow-y: auto; 
    background-color: var(--primary-background-color);
    box-sizing: border-box;
}

.dash-spreadsheet.dash-freeze-top, .dash-spreadsheet.dash-virtualized {
    max-height: 89vh !important;
}

.dash-spreadsheet.dash-freeze-left .dash-spreadsheet.dash-virtualized{
    max-width: 100vw !important;
}


/* ------- plot configuration floating div ------ */
.plot_configuration_setting-body-div{
    width: 100%;
    height: auto; 
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content:flex-start;  
    background-color: var(--div-bottom-background-color);
    border: var(--div-border);
    border-radius: 5px;
}

.plot-configuration-setting-body-item-div{
    width: 100%;
    height: 6vh; 
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content:space-between;  
}



