.content
{
    text-align: center;
    padding-bottom: 2.5rem;
}

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

.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: 10px;
    margin: 10px;
    background-color: var(--steel-blue);
    display: block;
    
    border:none;
    border-radius: 5px;
}
.graph_range li button:hover
{
    background-color: var(--light-blue);
    color: var(--mid-blue);
    cursor: pointer;
}
.plotly_div
{
    display: flex;
    justify-content: center;
    width: 1200px;
    height: 800px;

}
/* ----- Graph ----- */

.menu
{
/*     margin-top: 1000px; */
    background-color: var(--mid-blue);
    border-radius: 20px;
    margin: 0 auto;
    display: grid;
    justify-content:left;  
/*     width: 1900px; */
    padding: 20px;
    position: relative;
    
    gap: 1rem;
}

/* ----- Main Form w/ responsive layout ----- */
#main_form
{
    display: grid;
    gap: 1rem;
    margin-top: 5%;
}
/* @media (max-width: 1000px) {
    #main_form { grid-template-columns: repeat(1, 1fr); }
    #main_form
    {
        margin-left: 20px;
        margin-right: 20px;
    }
    
  }

@media (min-width: 1000px) {
    #main_form { grid-template-columns: repeat(1, 1fr); }
    #main_form
    {
        margin-left: 20px;
        margin-right: 20px;
    }
}
@media (min-width: 1950px) {
    #main_form { grid-template-columns: repeat(2, 1fr); }
    #main_form
    {
        margin-left: 20px;
        margin-right: 20px;
    }
} */
/* ----- Main Form w/ responsive layout ----- */

.menu_del_btn
{
    padding: 6px 6px;
    background: var(--bright-red);
    font-size: 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: fit-content;
    width: fit-content;
    text-align: center;
    position: relative;
    justify-self: right;
}
.menu_del_btn i
{
    color: var(--mid-blue);
}

.menu .row
{
    background-color: var(--mid-dark-blue);
    padding: 15px;
/*     margin-top: 15px; */
    display: flex;
    justify-content: center;
    justify-self: center;
    border-radius: 10px;
    width: fit-content;
}
.menu > .row
{
    width: 97.5%;
    justify-content: center;
}
.menu > .row ~ .row
{
    width: 97.5%
}
.menu .col:not(.col:last-child)
{
    margin-right: 20px;
    border-radius: 5px;
    background-color: var(--mid-blue);
    padding: 10px;
    width: fit-content;
    height: fit-content;
}
.menu label
{
    color: white;
    font-weight: bold;
}
.menu_select, .menu_input
{
    width: 150px;
    height: fit-content;
    margin-top: 5px;
    border: none;
    background-color: var(--steel-blue);
    color: white;
    font-family: "JetBrains Mono",monospace;
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    overflow: hidden;
}

.menu_button:not(.delete_btn)
{
    padding: 6px 6px;
    /* background: var(--bright-green); */
    
    font-size: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: fit-content;
    text-align: center;
    
    position: relative;
    top: 50%;
    transform: translate(0%, -50%);
}

.button_menu
{
/*     display: flex;
    border-radius: 5px;
    background-color: var(--mid-dark-blue);
    padding: 10px;
    justify-content: center; */
    
    display: flex;
    border-radius: 5px;
    background-color: var(--mid-blue);
    padding: 10px;
    width: fit-content;
    justify-content: center;
    
/*     margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px; */
    
/*     position: relative; */
/*     right: 0px; */
/*     top: 50%; */
}
.button_menu h3
{
    color: white;
    font-weight: bold;
    background-color: var(--mid-blue);
    padding: 10px;
    border-radius: 5px;
}
.button_container
{
    background-color: var(--mid-blue);
    padding: 10px;
    border-radius: 5px;
}
.button_menu .add_btn
{
    background: var(--bright-green);
    margin-right: 10px;
}
.button_menu .new_btn
{
   background:#FFC300;
/*    margin-right: 10px; */
}
.button_menu .tooltip
{
    display: block;
    position: relative;  
}
.tooltip .button_tooltip
{
    visibility: hidden;
    width:fit-content;
    
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    position: absolute;
    z-index: 1;
    /* opacity: 0;
    transition: opacity .6s; */
}
.tooltip:hover .button_tooltip
{
    visibility: visible;
}

.delete_btn
{
    background: var(--bright-red);
    font-size: 20px;
    
    padding: 6px 6px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* ----- Graph Menus ----- */

/* ----- Search Table ----- */
/* @media (max-width: 1200px) {
    .menu div.row:first-child
    {
        display: flex;
    }
} */

.menu_table
{
/*     background-color: var(--mid-blue); */
/*     table-layout: fixed; */
    width: 100%;
    border: none;
    border-radius: 5px;
    border-collapse: collapse;
    
}
.menu_table th
{
    background-color: var(--light-blue);
    padding: 5px;
    text-align: center;
    width: fit-content;
}
.menu_table th:first-child
{
    border-radius: 5px 0px 0px 0px;
}
.menu_table th:last-child
{
    border-radius: 0px 5px 0px 0px;
}
.menu_table tr:first-child
{
    border-radius: 5px 0px 0px 5px;
}
.menu_table tr:last-child
{
    border-radius: 0px 5px 5px 0px;
    overflow: hidden;
}
.menu_table tr:nth-child(even)
{
    background-color:var(--steel-blue);
}
.menu_table tr:nth-child(odd)
{
    background-color: var(--mid-blue);
}
.menu_table td
{
    text-align: center;
    padding: 5px;
    color:white;
    font-weight: bold;
    background: transparent;
    border: 0;
    font-size: 16px;
   
    width: fit-content;
}
.menu_table td a
{
    font-size: 16px;
    text-align: center;
    color:var(--bright-green);
    font-weight: bold;
    text-decoration: none;
}
.menu_table td:last-child
{
    background-color: transparent;
    width: fit-content;
}
/* ----- Search Table ----- */

/* ----- View Toggle ----- */
.menu_fieldset fieldset
{
    border: 0;
    background-color: var(--mid-blue);
    margin: 0 auto;
    justify-content:center;  
    width: fit-content;
}
.menu_fieldset label
{
    display: block;
    color: var(--light-blue);
    font-weight: bold;
    margin-top: 5px;
}
.menu_fieldset legend
{
    font-weight: bold;
    text-align: center;
    width: 200px;
    padding: 5px;
    background-color: var(--light-blue);
}
/* ----- View Toggle ----- */

/* ----- Dialog Box ----- */
dialog
{
    background-color: var(--main-bg-color);
    border: none;
    border-radius: 5px;
    border-collapse: collapse;
    width: 250px;
    height: 150px;
    
}
dialog #close_dialog
{
   background: var(--bright-red);
    font-size: 20px;
    
    padding: 6px 6px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    
    position: absolute;
    top: 0;
    right: 0;
    
}
dialog label
{
    color: white;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    top: 30%;
    transform: translate(0%, -30%);
}
#list p
{
    color: white;
    font-size: 15px;
    font-weight:  bold;
    top: 0%;
}
dialog #select_text
{
    color:white;
    position: relative;
    font-size: 14px;
}
dialog #no_files_text
{
    color:white;
    position: relative;
    font-size: 14px;
    top: 35%;
}
dialog #message_text
{
    color:white;
    font-size: 14px;
    position: relative;
    top: 35%;
}
dialog input
{
    
    width: 200px;
    height: fit-content;
    border: none;
    background-color: var(--steel-blue);
    color: white;
    font-family: "JetBrains Mono",monospace;
    font-weight: bold;
    text-align: center;
    padding: 10px 0px;
    overflow: hidden;
    
    position: relative;
    top: 50%;
    transform: translate(0%, -50%);
}
dialog #submit_dialog
{
    background: var(--bright-green);
    font-size: 20px;
    
    padding: 6px 6px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    
    position: relative;
    top: 50%;
    transform: translate(0%, -50%);
    
}
#list
{
    width:300px;
    height: 300px;
/*     text-align: center; */
}
#list ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
   
}
#list li
{
/*     background-color: var(--bright-teal); */
    width: 100%;
    height: fit-content;
    
}
.file_list_button
{
    background-color:var(--steel-blue);
    font-size: 16px;
    font-family: "JetBrains Mono",monospace;
    width: 100%;
    
    padding: 6px 6px;
    border: none;
    cursor: pointer;
    color: white;
}
.file_list_button:hover
{
    background-color: var(--light-steel-blue);
}
/* ----- Dialog Box ----- */