/* ----- Page Content ----- */
.content
{
    display: flex;
    padding-bottom: 5rem;
    justify-content: center;
}
.content p
{
    color: white;
}


/* ----- Graph ----- */
.graph_div
{
    border-radius: 25px;
    overflow: hidden;
    background-color: var(--mid-dark-blue);
    padding: 20px;
    width: fit-content;
    height: fit-content;
}

.graph_range
{
    list-style-type: none;
    padding: 5px;
    margin: 0;
    margin-top: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: var(--mid-blue);
    bottom: 0;
}
.graph_range li button
{
    font-family: "JetBrains Mono",monospace;
    color: white;
    text-align: center; 
    font-weight: bold;
    
    padding: 8px;
    margin: 8px;
    background-color: var(--steel-blue);
    display: block;
    
    border:none;
    border-radius: 5px;
}
.plotly_div
{
    display: flex;
    justify-content: center;
    border-radius: 25px;
    overflow: hidden;
    width: 900px;
    height: 650px;
}
/* ----- Graph ----- */

.menu
{
    background-color: var(--mid-blue);
    border-radius: 20px;
    padding: 20px;
/*     padding-top: 0px; */
    width: fit-content;
}
.menu .war_menu_header
{
    width: 100%;
    text-align: center;
}
.menu h4
{
    color: white;
    display: inline-block;
    text-align: center;
}
.graph_collection
{
    display: grid;
/*     margin: 0, auto; */
    margin-top: 3%;
    padding: 20px;
    row-gap: 1rem;
    column-gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    width: fit-content;
    
}
@media only screen and (max-width: 2710px)
{
    .graph_collection
    {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 1810px)
{
    .graph_collection
    {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media only screen and (min-width: 2710px)
{
    .graph_collection
    {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (min-width: 3615px)
{
    .graph_collection
    {
        grid-template-columns: repeat(4, 1fr);
    }
}

.menu_hide_btn
{
    background-color: var(--bright-red);
    margin-bottom: 5px;
    margin-top: 7px;
    /* display: inline-block; */
    float: left;
    
}
.load_export
{
    position: relative;
    float: right;
}
/* ----- Page Content ----- */