:root{
    --Primary : #1C824F;
    --Secondary : #1C824F;
    --Background : #F4F4F9;
    --ListAndFooter : #7D7D7D;
    --BordersAndLines : #E0E0E0;
    --Shadow: #0000001a;
    --White: #ffffff;
}
* {
    margin:0;
    top:0;
    left:0;
    font-family: sans-serif;
}
body {
    width:100vw;
    background-color: var(--Background);
}
header{
    width:100vw;
    display: flex;
    flex-direction: row;
    padding: 5px;
    align-items: center;
    position: fixed;
    height: 50px;
    z-index: 10;
    background-color: var(--Primary);
    box-shadow:0 0 10px 5px var(--Shadow); 
    color: var(--White);
    justify-content: space-between;
}
header a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    color: var(--White);
    margin-left: 10px;
}
header img{
    height:30px;
}
header button{
    margin-right: 10px;
}
nav{
    width:50px;
    padding:5px;
    position: fixed;
    flex-direction: column;
    display: flex;
    margin-top:60px;
    height:calc(100vh - 60px);
    background-color: var(--Primary);
    box-shadow:0 0 10px 5px var(--Shadow)
}
.main{
    position: fixed;
    flex-direction: column;
    display: flex;
    margin-top:60px;
    padding:10px;
    margin-left:60px;
    width:calc(100vw - 80px);
    height: calc(100vh - 50px);
    overflow-y: auto;
    gap:20px;
}
section{
    display: flex;
    flex-direction: row;
    gap:20px;
    justify-content: space-between;
    width: 100%;
}
section h3{
    color:var(--Primary);
}
table{
    background-color: var(--White);
    border-radius: 5px;
    width: 100%;
    border-collapse: collapse;
}
table tr{
    height: 40px;
    border-bottom: solid 1px var(--BordersAndLines);
    justify-content: space-between;
}
table tr:hover{
    background-color: var(--BordersAndLines);
}
table th{
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    color: var(--Secondary);
    width: fit-content;
    text-transform: uppercase;
    font-size: 10pt;
    vertical-align: middle;
}
table td {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: middle;
}
form{
    width: 100%;
    display: flex;
    flex-direction: column;
}
form label{
    margin-top: 20px;
    margin-bottom: -10px;
    margin-left:10px;
    z-index: 20;
    background-color: white;
    width: fit-content;
    text-transform: uppercase;
    color: var(--Primary);
    font-weight: bold;
    font-size: small;
}
form input{
    height:25px;
}
header div{
    display: flex;
    gap: 20px;
    width: 80%;
}