body {
    font-family: "Open Sans", sans-serif;
    color: #454545;
    font-size: 24px;
    margin: 2em auto;
    max-width: 800px;
    padding: 1em;
    line-height: 1.4;
    text-align: justify;
    background-color: #fefefe;
    }
    
    
button {
        background-color: #282828;
        border: none;
        color: white;
        padding: 5px 5px;
        height:fit-content;
        min-width:fit-content;
        border-radius: 5px;
        text-align: center;
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        transition-duration: 0.2s;
      }
button:hover{
         background-color: #585858;
         cursor: pointer;
    }
    
button:disabled{
        background-color: #585858;
        cursor: not-allowed;
    }

input[type=text]{
        width: 150px;
        height: 30px;
        border: 3px solid #282828;
        border-radius: 5px;
        font-weight: 700;
        font-size: 15px;
        box-sizing:border-box;
    }
input[type=text]:focus{
        outline: none;
        border: 3px solid #585858;
    }
form{
    display: inline-block;
}
select {
    position: relative;
    display: inline-block;
    background-color: #f1f1f1;
    border:none;
    border-radius: 5px;
    font-weight: 700;

    }
    
    
    option {
    display: none;
    position: absolute;
    border: 2px solid ;
    border-radius: 10px;
    background-color: #fefefe;
    /* max-width: 10px; */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    /* z-index: 1; */
    font-size: 16px;
    margin: none;
    }
    
  
    option {
    margin-top: 2px;
    border-radius: 10px;
    margin-bottom: 2px;
    display: block;
    text-align: center;
    color: #282828;
    font-weight: 700;
    /* padding: 2px 4px; */
    text-decoration: none;
    
    }
    
  
    .dropdown-content p:hover {background-color: #f1f1f1}
    
   
    .dropdown:hover .dropdown-content {
    display: block;
    }
    
   

    table{
        font-size: 20px;
    }

    th, td { padding-right: 20px; }

.grid-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


.two-col-container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

form{
    padding: 0px;
    margin: 0px;
}

#spinner{
    padding-top: 28px;
    padding-left: 10px;
}
.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #585858;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    align-items: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


