

* {
    font-family: Roboto, sans-serif;
    box-sizing: border-box;
}




hr {
    border: solid 1px #4253a521;
}


.page_header {
    height: 30px;
}

#main {
    
    grid-area: p;
    padding: 10px;
    overflow: auto;
    WIDTH: 100%;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

#footer {
    padding: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
    grid-area: f;
    background-color: #fbfbfb;
}


header {
    width: 100%;
    margin: auto;

    background-color: lightgray;

    display: flex;
    justify-content: space-between;
    grid-area: h;
}

#title {
padding: 20px;
}
.mdc-drawer {
    width: auto;
    grid-area: a;
}
body{
    margin:0px;
}



#logged_in_user{
    
}

#eq_dash {
    display: none;
}

#sign_in {
    display: none;
}

#eq_no_permisions {
    display: none;
}

.mdc-top-app-bar{
    background-color: #4253a5;
    position: fixed;
}

#page{
    position: fixed;
    
    
    display: grid;
    
    width: 100vw;
    height: 100vh;
    grid-template-rows: 56px 1fr auto;
    grid-template-columns: 200px 1fr;
    grid-template-areas:
        "h h h"
        "a p p"
        "f f f";
}

p{
    margin-block-start: 0em;
    margin-block-end: 0em;
}

#page.page_no_nav{
    grid-template-columns: 100vw;
    grid-template-areas:
    "h"
    "p"
    "f";
}

.large_input {
    font-size: 30px;
    max-width: 95%;
}
.input_hor_large {
    display: flex;
    
}

.page_title{
    font-size: 25px;
    color: #4253a5;
    font-weight: 500;
}

@media only screen and (max-width: 1000px) {
    .input_hor_large {
        flex-direction: column;
    }

    .hide_small{
        display: none;
    }

   
  }

  @media only screen and (max-width: 500px) {

    body {
        font-size: small;
    }
  }

@media only screen and (min-width: 1000px) {
    #page.page_no_nav{
        grid-template-columns: 200px 1fr;
        grid-template-areas:
            "h h h"
            "a p p"
            "f f f";
    }
    #menu_button{
        display: none;
    }

    .mdc-drawer{
        display: block;
    }

    
}
.filter_group{
    display: flex;
    border: 1px solid black;
    font-size: 30px;
}

.filter_group button{
    
    border: none;
    font-size: 20px;
}


#filter_input {
    border: none;
    outline: none;

}
#filter_input:focus-visible {
    border: none;

}

.hide{
    display: none;
}

.scrolllable{
    overflow: auto;
    max-height: 50vh;
}

.sf-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.sf-table tr:nth-child(even) {
    background-color: #f7f7f7;
}

.sf-table td {
    padding: 5px;
    overflow-wrap: anywhere;
}
.sf-table th {
    padding: 5px;
}

dialog {
    border: solid 4px #484494;
    border-radius: 10px;
}

.mdc-button__label {
    color: #484494;
}


/* Dropdown Button */
.dropbtn {
    background-color: #4253a5;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;

    margin: -5px;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    margin-top: 1px;
    margin-bottom: 1px;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;

    right: 45px;
    top: 0px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}