html, body {
    font-family: "Segoe UI";
    height:100%;
}
.footer {
    text-align: center;
    background-color:rgb(212, 212, 212);
    margin-top: 5em;
}
h1, h2, h3 {
    font-weight: 600;
}
h1 {
    font-size:1.6em;
}

h2 {
    font-size: 1.3em;
}
h3 {
    font-size: 1.1em;
    margin-top: 1.2em;
}
#logo {
    float:left;
    margin:0 2em 0 2em;
}

nav {
    height:5em;
    line-height: 5em;
    background-color: rgb(133, 138, 183);
    margin:0;
    color:white;
    font-weight: bold;
}

nav ul {
    padding:0;
    margin:0;
}

nav li {
    list-style: none;
    display: inline-block;
    font-size: 1.2em;
    margin-right: 1em;
}

nav a {
    text-decoration: none;
    color:white;
}
#sidebar{
    float: left;
    width:20%;
    height:100%;
    background-color:rgb(234, 243, 234);
    margin:1em 3em 20em 1em;
    padding:1em;
    border-radius: 12px;
    font-family: "Tahoma";
    font-size: .9em;
}
#content {
    float:right;
    width:73%;
    margin-bottom: 3em;
}

a {
    color:rgb(14, 14, 203);
}
hr {
    border:1px dotted grey;
    margin:.1em;
}
.error {
    background-color:rgb(231, 65, 65);
    color:white;
    border-radius: 10px;
    padding:.5em;
    width: fit-content;
}
.success {
    background-color:rgb(88, 189, 118);
    color:white;
    border-radius: 10px;
    padding:.5em;
    width: fit-content;
}
#actions{
    margin:1em;
}
.actionButton {
    background-color: green;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    padding:.3em;
}
/* TABLES */
table, td {
    padding:.3em;
    border-collapse: collapse;
}
th, td {
    border:1px dotted grey;
}
th {
    background-color:rgb(35, 35, 65);
    color:white;
    padding:.3em;
    font-size: .9em;
    font-weight:500;
}
td {
    vertical-align: top;
}
tr:nth-child(even) {
    background-color: rgb(234, 243, 234);
}
.tableIcon {
    width:1em;
}
.totalLine{
    text-align: right;
}
/* FORMS */
.formCard{
    background-color:rgb(229, 229, 229);
    border-radius: 5px;
    padding:1em;
    width:50%;
}
label {
    font-weight:bold;
}
input[type=text], select, textarea {
    width:100%;
    padding: 2px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type=text]:focus {
border: 1px solid #b1b1b1;
}
textarea{
    height: 10em;
}
input[type=button], input[type=submit], input[type=reset] {
    background-color: rgb(35, 35, 65);
    color:white;
}
/*TEXT EFFECTS*/
.high {
    background-color:red;
    color:white;
    padding:.1em;
    border-radius:3px;
}