* {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

@page {
    page-orientation: upright;
}

input[type=text], input[type=password] {
    line-height: 30px;
    outline: none;
    width: 100%;
}

input.error {
    border-color: red;
}

table {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    border-left: none;
    border-right: none;
    border-collapse: collapse;
}

table.odd-row-grey tr:nth-child(odd) {
    background-color: lightgrey;
}

table tr.row-hover-pointer:hover {
    background-color: lightgreen;
    cursor: pointer;
}

.background-light-grey {
    background-color: lightgrey;
}

.padding-5, .padding-5 td {
    padding: 5px;
}

th {
    print-color-adjust: exact;
    border-top: 2px solid black;
    border-bottom: 1px solid black;
    border-left: none;
    border-right: none;
    background-color: green;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
}

@media print {
    h2 {
        font-size: 16pt;
        margin-top: 0;
        margin-bottom: 0;
    }

    h3 {
        font-size: 14pt;
        margin-top: 0;
        margin-bottom: 0;
    }

    th {
        background-color: grey !important;
        color: black !important;
    }
}

tr {
    border: none;
}

.table-small-italic {
    font-size: smaller;
    font-style: italic;
}

.bold {
    font-weight: bold;
}

td {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

td.align-top {
    vertical-align: top;
}

.table-cell-invisible {
    background-color: white;
    border: none;
}

.table-row-underline {
    border-bottom: 2px solid black;
}

.table-row-highlight {
    border-bottom: 2px solid black;
    border-top: 2px solid black;
    font-weight: bold;
}

#overview-progress {
    max-width: 800px;
    width: 100%;
}

.progress-bar-container {
    width: 100%;
    line-height: 30px;
    border: 2px solid black;
    background-color: lightgray;
    border-radius: 15px;
}

.progress-bar {
    line-height: 26px;
    border: 0px;
    border-radius: 13px;
    padding: 0 13px;
    font-weight: bold;
    color: black;
    white-space: nowrap;
    overflow: visible;
    text-align: center;
}

button {
    min-width: 150px;
    min-height: 40px;
    background-color: green;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    outline: none;
    transition: 0.2s ease-in-out;
}

button.narrow {
    min-width: 110px;
    padding: 0px 10px;
    min-height: 0;
}

button.hover-red:hover {
    background-color: red;
}

button.hover-yellow:hover {
    background-color: gold;
    color: black;
}

.red-button {
    background-color: red;
    
}

.yellow-button {
    background-color: gold;
    color: black;
}

button.slim {
    min-width: 0;
    padding: 0px 10px;
    margin-right: 10px;
    margin-bottom: 5px;
    border: 2px solid green;
}

button.selected {
    border: 2px solid darkgreen;
    background-color: gold;
    color: black;
}

button:hover {
    background-color: darkgreen;
    cursor: pointer;
}

button:disabled {
    background-color: grey;
}

button:disabled:hover {
    cursor: default;
}

.full-width {
    width: 100%;
}

.no-border {
    border: none;
}

.no-background, .no-background tr {
    background: none!important;
}

.no-padding, .no-padding td {
    padding: 0;
}

.no-top-margin {
    margin-top: 0;
}

.no-bottom-margin {
    margin-bottom: 0;
}

.bottom-margin-20 {
    margin-bottom: 20px;
}

.width33 {
    width: 33%;
}

.width67 {
    width: 67%;
}

.width50 {
    width: 50%;
}

.width75 {
    width: 75%;
}

.width25 {
    width: 25%;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

.border-left {
    border-left: 2px solid black;
}

.inline-block-table {
    display: inline-block;
}

.margin-right-20 {
    margin-right: 20px;
}

.hide {
    display: none;
}

#loading-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding-top: 250px;
    font-size: x-large;
}

#single-user-entries-modal {
    position: fixed;
    border: 5px solid darkgreen;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    overflow-y: scroll;
    padding: 10px;
    text-align: center;
}

.user-warning {
    display: none;
    border: 2px solid darkred;
    background-color: #fbb;
    padding: 5px;
    color: darkred;
    font-weight: bold;
}

input.warning-text-input {
    line-height: normal;
    margin-right: 5px;
    width: 300px;
}

span.warning-text-span {
    display: inline-block;
    text-align: left;
    line-height: normal;
    margin-right: 5px;
    width: 300px;
}

.day-container {
    border: 2px solid black;
    width: 100%;
    max-width: 375px;
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: top;
    margin-bottom: 10px;
}

.day-container-headline {
    line-height: 30px;
    background-color: green;
    color: white;
    font-weight: bold;
    margin-left: -5px;
    margin-right: -5px;
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

#login-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0px 10px 10px 10px;
    width: 277px;
    height: auto;
    border: 3px solid black;
    background-color: #eee;
}

label {
    margin-right: 10px;
}

.top-margin-10 {
    margin-top: 10px;
}

.red {
    color: red;
}

.small {
    font-size: small;
}

.italic {
    font-style: italic;
}

.green {
    color: darkgreen;
}

.no-wrap {
    white-space: nowrap;
}

.bg-admin, .bg-admin td {
    background-color: lightpink;
    border-bottom: 5px solid darkred;
}

.page-break {
    break-after: page;
}

#countdown-num-days {
    text-align: center;
    font-size: xx-large;
    font-weight: bold;
}

@media screen and (min-width: 749px) {
    .xxx-large-desktop {
        font-size: xxx-large;
    }
}
