* {
    --dark-gray: #222222;
    --light-gray: #eeeeee;
    --even-row: #dddddd;
    --odd-row: #aaaaaa;
    --primary: rgb(0, 161, 190);
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.page-container{
    margin: auto;
    width: 80%;
    min-height: 99vh;
    position: relative;
    /* padding-top: 75px; */
}

.content-wrapper{
    padding-top: 100px;
    padding-bottom: 5em;
}

.footer{
    position: absolute;
    bottom: 0px;
    height: 2em;
    width: 100%;
    text-align: center;
}

.dark{
    background-color: var(--dark-gray);
    color: #ffffff;
}

.light{
    background-color: var(--light-gray);
    color: black;
}

.navbar{
    z-index: 1;
    background-color: var(--primary);
    height: 60px;
    width: 100%;
    position: fixed;
    top: 0;
    border-bottom: 5px solid rgba(0,0,0,.25);
}

.navbar ul {
    list-style-type: none;
    position: absolute;
    right: 0;
    top: 25%;
}

.navbar li {
    padding: 0;
    display: inline;
    justify-content: space-evenly;
}

.navbar button {
    padding: 5px;
    margin: 0 10px;
    box-sizing: border-box;
    border-radius: 8px;
}

#main-header{
    margin-bottom: 50px;
    text-decoration: underline;
    text-align: center;
}

#darkModeButton{
    background-color: var(--dark-gray);
    color: var(--light-gray);
    border: 1px solid var(--light-gray);
    box-shadow: 0px 0px 10px rgba(0,0,0,.9);
}

#lightModeButton{
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border: 1px solid var(--dark-gray);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9);
}

#my-form{
    text-align: center;
}

#my-form input[type='text']{
    margin: 5px 0;
}

#msg{
    /* height: 2em; */
    display: inline-block;
    transition: 0.5s;
    margin: 5px 0px;
}

#my-form .button{
    font-weight: bold;
}

.error {
    color: rgb(225, 0, 0);
    /* transition: 1s; */
}

.success {
    color: rgb(0, 225, 0);
    /* transition: 0.5s; */
}


.userlist-container{
    width: 90%;
    margin: auto;
    padding-top: 25px;
}

ul{
    list-style: none;
    padding: 0;
    text-align: justify;
}

ul li{
    padding: 5px;
}

.user-table {
    margin: auto;
    width: 100%;
    min-width: 225px;
    max-width: 40%;
    color: black;
    font-size: 0.8em;
    border-collapse: collapse;
    border-spacing: 0px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.20);
}

.user-table-head tr th{
    background-color: var(--primary);
    color: var(--light-gray);
    font-size: 1em;
    font-weight: bold;
}

.user-table th, td{
    padding: 5px 10px;
}

.user-table tbody tr td{
    box-shadow: 0px 0px 1px rgba(0,0,0,.25);
}

.user-table tbody tr:first-of-type{
    display: none;
}

.user-table tbody tr:nth-child(even){
    background-color: var(--even-row);
}

.user-table tbody tr:nth-child(odd){
    background-color: var(--odd-row);
}

.user-table tbody tr:last-of-type{
    border-bottom: 4px solid var(--primary);
}
