html {
    scroll-behavior: smooth;
}

body {
    width: 95%;
    height: 100%;
    margin: 10px auto;
    font-family: Arial, Helvetica, sans-serif;
}

nav {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: #3dd44f;
}

a:hover {
    text-decoration: underline;
    color: #24832f;
}

a:visited {
    text-decoration: none;
    color: #3dd44f;
}

.additional-options {
    width: 100% - 10px;
    background-color: lavender;
    text-align: right;
    padding: 20px 5px 20px 5px;
    margin-bottom: 10px;
}

.button {
    background-color: #3dd44f;
    box-shadow: 0 5px 0 #24832f;
    color: white;
    padding: 5px;
    position: relative;
    margin-bottom: 10px;
    font-size: large;
}

.button:hover {
    background-color: #32af41;
    color: white;
}

.button:active {
    box-shadow: none;
    top: 5px;
}

.button:visited {
    color: white;
}

.button-small {
    background-color: #3dd44f;
    box-shadow: 0 2px 0 #24832f;
    color: white;
    padding: 2px;
    position: relative;
    margin-bottom: 5px;
    font-size: small;
}

.button-small-selected {
    background-color: #24832f;
    box-shadow: 0 5px 0 #24832f;
    color: white;
    padding: 2px;
    position: relative;
    margin-bottom: 5px;
    font-size: small;
    font-weight: 500;
}

.button-small:hover {
    background-color: #32af41;
    color: white;
}

.button-small:active {
    box-shadow: none;
    top: 2px;
}

.button-small:visited {
    color: white;
}

.full-width {
    width: 100%;
    table-layout: auto;
}

.data-table {
    /* display: inline-block; */
    margin-right: 10px;
    border-collapse: collapse;
    border: 1px solid black;
}

.data-table th {
    background-color: darkgrey;
    border: 1px solid black;
    padding: 5px;
}

.data-table td {
    border: 1px solid black;
    padding: 5px;
}

#sites-dummy {
    visibility: hidden;
}

footer {
    text-align: center;
    height: 50px;
}

.infobar-success {
    width: 100% - 10px;
    font-size: large;
    color: green;
    background-color: lightgreen;
    text-align: center;
    padding: 5px;
    cursor: pointer;
}

.infobar-error {
    width: 100% - 10px;
    font-size: large;
    color: red;
    background-color: rgb(226, 179, 179);
    text-align: center;
    padding: 5px;
    cursor: pointer;
}

.error-msg {
    color: red;
    background-color: rgb(226, 179, 179);
    text-align: center;
    padding: 5px;
}

.success-msg {
    color: green;
    background-color: lightgreen;
    text-align: center;
    padding: 5px;
}

.form-table th {
    text-align: right;
}

.project-info-wrap {
    width: 100%;
    display: table;
}

.project-info-left {
    width: 70% - 10px;
    display: table-cell;
    text-align: left;
    padding-right: 10px;
}

.project-info-right {
    width: 30%;
    display: table-cell;
    vertical-align: top;
}

.url_info_wrap {
    width: 100%;
    display: table;
}

.url_info_left {
    width: 33% - 10px;
    display: table-cell;
    text-align: center;
    padding-right: 10px;
}

.url_info_center {
    width: 33% - 20px;
    display: table-cell;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.url_info_right {
    width: 33% - 10px;
    display: table-cell;
    text-align: center;
    padding-left: 10px;
}

.task-info-left {
    width: 50% - 10px;
    display: table-cell;
    text-align: left;
    padding-right: 10px;
}

.task-info-right {
    width: 50%;
    display: table-cell;
    vertical-align: top;
}

#chart_div {
    min-height: 300px;
}

.chart_div_big {
    min-height: 600px;
}

.mainNavigation {
    width: 100%;
}

.logout {
    float: right;
}

.tool_state {
    width: 100%;
    font-size: large;
    text-align: center;
    font-weight: bold;
}

.state_buttons {
    text-align: right;
    width: 100%;
}