body{
    font-family: sans-serif;
    background-color: #e7e9ea;
    margin: 0px;
}
#header{
    text-align: center;
    background-color: #39393a;
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0px;
}
#header img{
    height: 69px;
    margin: 5px;
}
#mainDiv{
    text-align: center;
}
#navbar{
    position: absolute;
    top: 83px;
    height: 50px;
    background-color: #6e7881;
    left: 0px;
    width: 100%;
    /* box-shadow: 0px 7px 11px -8px grey; */
}
#options{
    width: fit-content;
    margin: 0 auto;
}
.nav-option{
    height: -webkit-fill-available;
    position: relative;
    background-color: #6e7881;
    border-style: none;
    cursor: pointer;
    transition: 0.4s;
    color: white;
    font-size: 21px;
    padding-right: 15px;
    padding-left: 15px;
    outline: none;
    margin-left: -5px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.nav-option:hover{
    background-color: #555c63 !important;
}
#temp{
    color: black;
    background-color: #e7e9ea;
}
.logo{
    height: 70px;
}
.theTableDiv{
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    top: 158px;
    background-color: white;
    padding: 25px;
    border-radius: 15px;
}
#footer{
    position: absolute;
    bottom: 0px;
    left: -5px;
    background-color: white;
    width: 100%;
    text-align: center;
    margin-top: 200px;
}
#footer img{
    height: 66px; 
}
.noneTable{
    max-width: 440px;
}
.ownTable{
    text-align: left;
}
.add{
    font-size: 22px;
    font-weight: bold;
    border-radius: 5px;
    border-style: unset;
    background-color: #a9db94;
    position: relative;
    bottom: -2px;
    transition: 0.4s;
    outline: none;
    margin-top: 10px;
    color: #494848;
}
.add:hover{
    background-color: #95c282;
}
button{
    cursor: pointer;
}
.ownTable img{
    height: 25px;
    cursor: pointer;
    right: 12px;
    position: absolute;
    top: 12px;
}
.ownTable span{
    display: flex;
    width: 100%;
    position: relative;
}
.usersP{
    padding-left: 12px;
}
.tableButton{
    padding: 5px;
    width: 130px;
    border-radius: 7px;
    border-style: unset;
    outline: none;
    transition: 0.3s;
}
.tableButton:hover{
    box-shadow: 2px 2px 10px -4px;
}
.block{
    background-color: #f7bbbb;
    border-color: #cb9999;
}
.block:disabled{
    cursor: not-allowed;
    box-shadow: 0px 0px 0px 0px;
}
.allow{
    background-color: #aedfae;
    border-color: #84b384;
}
.allow:disabled{
    cursor: not-allowed;
    box-shadow: 0px 0px 0px 0px;
}
.small{
    width: 85px;
}
select{
    padding: 3px;
    border-radius: 5px;
    outline: none;
}
input{
    padding: 5px;
    outline: none;
    border-radius: 6px;
    border-style: groove;
    color: #595858;
}
.recordInput{
    width: 250px;
    margin: 10px;
    margin-left: 0px;
}
.odd{
    background-color: #f4f2f2 !important;
}
.even .sorting_1{
    background-color: #e4e3e2 !important;
}
.even{
    background-color: #e4e3e2 !important;
}
.emailButton {
    padding: 11px;
    background-color: #aedfae;
    border-color: #84b384;
    border-width: 1px;
    border-style: solid;
    font-size: 16px;
    font-weight: bold;
    color: #494848;
    width: 165px;
    margin-top: 10px;
}
.active{
    border-left-color: #a2d1a2;
    border-left-width: 4px;
    border-left-style: outset;
}
.even .active{
    border-left-color: #8bb08b;
}
.refresh{
    height: 25px;
    position: absolute;
    right: 29px;
    cursor: pointer;
    transition: 0.4s
}
.refresh:hover{
    height: 28px;

}
.turn{
    height: 28px;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
     transform: rotate(360deg);
    -webkit-transition-duration: 3s;
    -moz-transition-duration: 3s;
    -o-transition-duration: 3s;
     transition-duration: 3s;
}
.addButton{
    padding: 10px;
    border-width: 1px;
    border-style: solid;
    font-size: 14px;
    font-weight: bold;
    color: #494848;
    width: 154px;
    margin-top: 10px; 
}
#urlInfo{
    text-align: left;
    margin-left: 42px;
    margin-top: -18px;
    margin-bottom: 30px;
}

/* popup */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    max-width: 400px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 15px;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    font-size: 31px;
}

.modal-header {
    padding: 2px 16px;
    background-color: #da8787;
    color: white;
    text-align: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-body {
    padding: 35px 10px;
    text-align: center;
}
.blockFor{
    font-weight: bold;
}

.popupButton{
    margin: 15px;
    font-size: 18px;
    border-width: 1.4px;
    border-color: #b6b9b6;
    border-style: double;
}
.nav-options-default{
    color: white !important;
    background-color: #6e7881 !important;
}
.nav-options-active{
    color: black !important;
    background-color: #e7e9ea !important;
}
.nav-options-active:hover{
    background-color: #e7e9ea !important;
}