.agro-insights-page-container{
    height: 95vh; 
    width: 97.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:flex-start;
    padding: 1px;
    box-sizing: border-box;
    overflow: hidden;
}

.agro-insights-page-header{
    height: 5%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-evenly;
    background-color: var(--div-head-first-background-color);
    color: var(--text-color);
    font-style: var(--font-style);
    font-weight: var(--font-width);
    padding-bottom: 1px;
    border: var(--div-border);
    border-top-left-radius: 5px;  
    border-top-right-radius: 5px;
    box-sizing: border-box;
}

.agro-insights-graphs-body{
    height: 93%;
    width: 100%;
    display: flex;
    gap: 1px;
    padding: 1px;
    flex-direction: column; 
    /* background-color: var(--div-body-background-color); */
    border: var(--div-border);
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: auto;
    /* background-color: brown; */
}

.agro-insights-graph-container-1{
    flex: 1;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    padding: 1px;
    background-color: var(--div-body-background-color);
    box-sizing: border-box;
    overflow-x: auto;
}

.agro-insights-graph-container-2{
    flex: 1;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50%;
    padding: 1px;
    background-color: var(--div-body-background-color);
    box-sizing: border-box;
    overflow-x: auto;
}

.agro-insights-graph-container-3{
    flex: 1;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 33.33%;
    padding: 1px;
    background-color: var(--div-body-background-color);
    box-sizing: border-box;
    overflow-x: auto;
}

.agro-insights-graph-container-4{
    flex: 1;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 25.0%;
    padding: 1px;
    background-color: var(--div-body-background-color);
    box-sizing: border-box;
    overflow-x: auto;
}

.agro-insights-graph-side-container{
    width: 2vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--div-side-background-color);
    border: var(--div-border);
    box-sizing: border-box;
    
}

.agro-insights-graph{
    width: 98%; 
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--div-body-background-color);
    border: var(--div-border);
    box-sizing: border-box;
}

.agro-insights-page-footer{
    height: 2%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--div-bottom-background-color);
    border: var(--div-border);
    border-bottom-left-radius: 5px;  
    border-bottom-right-radius: 5px;
    margin-bottom: 1px;
    box-sizing: border-box;
}

.agro-insights-time-range-range-slider{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 5px;
    margin-top: 25px;
    box-sizing: border-box;
}

/* ------------------------------------ */
.agro-insight-floating-div-show{
    display: block;
    position: fixed;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    height: fit-content;
    min-height: 10vh;
    max-height: 80vh;
    width: fit-content;
    min-width: 15vw;
    max-width: 70vw; 
    
    background: var(--div-body-background-color);
    border: var(--div-border);
    border-radius: 5px;
    box-shadow: var(--floating-selected-box-shadow);
    z-index: 1000;
    text-align: center;
    box-sizing: border-box;
}

.agro-insights-Checklist{
    width: auto;
    margin-left: 5px;
    margin-left: 5px;
    font-size:120%;
    font-weight: bold;
}

/* ------------------------------------ */

.agro-insights-variables-selection-div-content{
    width: 100%;
    max-height: 60vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-bottom: var(--controls-border);
    border-top-left-radius: 5px;  
    border-top-right-radius: 5px;
    background-color: var(--div-body-background-color);
    box-sizing: border-box; 
}

.agro-insights-variables-selection-plant-unit-container{
    width: 100%;
    height:fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 1px;
    padding-right: 1px;
    box-sizing: border-box; 
}

.agro-insights-variables-selection-plant-unit-item-content-not-selected, 
.agro-insights-variables-selection-plant-unit-item-content-selected{
    width: 100%;
    min-width: 20vw;
    height:3.5vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    
    font-style: var(--font-style);
    font-weight: var(--font-width);
    border-bottom: var(--controls-border);
    background-color: var(--div-head-second-background-color);
    box-sizing: border-box; 
}

.agro-insights-variables-selection-plant-unit-item-content-not-selected{
    color: var(--text-color);
}
.agro-insights-variables-selection-plant-unit-item-content-selected{
    color: #2e7d32;
    font-size: 110%;
}

.agro-insights-variables-selection-plant-unit-container-expanded{
    width: 100%;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 15px;
    text-align: left;
    overflow-y: auto;
    border-bottom: var(--controls-border);
    box-sizing: border-box; 
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.agro-insights-variables-selection-plant-unit-container-collapsed{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.agro-insights-colors-selection-variable-item-div{
    width: auto;
    min-width: 25vw;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    margin: 3px 6px 3px 0;
    padding-left: 5px;
    text-align: left;
    font-size: 110%;
}

.floating-color-picker-div-show{
    display: block;
    position: fixed;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    background: var(--div-body-background-color);
    border: var(--controls-border);
    border-radius: 5px;
    box-shadow: var(--floating-selected-box-shadow);
    z-index: 1000;
    padding: 0px;
    text-align: center;
    box-sizing: border-box;
}

.agro-insights-color-picker-div-head{
    width: 100%;
    height:4vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: var(--controls-border);
    border-top-left-radius: 5px;  
    border-top-right-radius: 5px;
    background-color: var(--div-head-first-background-color);
    box-sizing: border-box; 
}


