@import url('https://fonts.googleapis.com/css2?family=Duru+Sans&Roboto:wght@400..600&display=swap');

:root {
    --light: #10355a;
    --dark: #fff;
    --darker-green: #0a2424;
    --dark-green: #eef3f5;
    --green: #27a603;
    --light-green: #10355a;
    --blue: #0c4feb;
    --brown: #8c6f56;
    --red: #da3832;
    --shadow: rgba(16, 53, 90, 0.25);
    --background: #eef3f5;
    --container: #fff;
    --button: #0c4feb;
    --text: #10355a;
    --btn-text: #fff;
    --border: #ef7800;
    --link: #34b3ec;
    --footer: #0a2424;
    --input-border: #bbc7d0;
    --logo-blue: #19223e;
    --logo-red: #a6232a;
    --prev-day: #cadafd;
    --next-day: #96b4f7;
}

.container {
    background-color: var(--container);
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    max-width: 1600px;
    margin: auto;
    border-radius: 15px;
    margin-bottom: 100px;
    padding: 10px;
}

h5{
    font-weight: lighter;
}

body {
    background-color: var(--background);
    color: var(--light);
    font-family: 'Duru Sans', sans-serif;
}
.logo-w {
    width: 200px;
}
.full-height {
    height: 100%;
}

.vert-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    color: var(--link);
    text-decoration: none;
}

.dropdown-button {
    display: inline-block;
    color: var(--text);
    line-height: 50px;
    height: 100%;
    width: 100%;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    width: 160px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--background);
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: var(--container);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-button {
    background-color: var(--background);
}

.header_button {
    margin: 0;
}

button {
    color: var(--btn-text);
    background-color: var(--button);
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 7px;
    box-shadow: 5px 5px 15px var(--shadow);
    font-weight: 500;
    margin-bottom: 10px;
    cursor: pointer;
}

.today {
    background-color: var(--green);
    color: var(--btn-text);
    padding: 30px 0px;
}

.overflow {
    overflow-x: auto;
}

.day {
    padding: 20px 0px;
}

.prev-day {
    background-color: var(--prev-day);
}

.next-day {
    background-color: var(--next-day);
}

.logo {
    max-height: 80px;
}

header {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.button {
    display: inline;
}

main {
    width: 90%;
    margin: auto;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: var(--footer);
    height: 90px;
}

footer > p {
    color: var(--btn-text);
}

.center {
    margin: 10px auto;
    padding: 15px 0px;
    text-align: center;
}

.form-input{
    border-radius: 5px;
    height: 30px;
    background-color: var(--dark);
    color: var(--text);
    border-color: var(--input-border);
    padding: 0;
    font-size: 16px;
}

.nobottom {
    border-bottom: none;
}

.noformat {
    margin-bottom: auto;
    border-bottom: 0px;
}

table {
    min-width: 100%;
    margin: auto;
    border-collapse: collapse;
}

th {
    background-color: var(--container);
    padding: 10px 20px;
}

tr:nth-child(even) {
    background-color: var(--background);
}

td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

tr.archived {
    background-color: var(--red);
    color: var(--dark);
}

tr.archived > td > a {
    color: var(--dark);
}

.cursor-select:hover {
    cursor: pointer;
}

.heading {
    border-bottom: 2px solid var(--logo-blue);
}

td {
    padding: 10px;
    text-align: center;
    border-bottom: 5px solid transparent;
    vertical-align: middle;
}

input::placeholder {
    color: var(--link);
    font-weight: bolder;
}

.success {
    color: var(--light-green);
}

.error {
    color: var(--red);
    text-transform: uppercase;
}

select {
    border-radius: 5px;
    background-color: var(--dark);
    color: var(--text);
    border: 3px solid var(--input-border);
    margin: 10px 5px;
}

option {
    padding: 2.5px 0px;
}

.checkmark-cell {
    font-size: 25px;
    width: 25px; /* Set the width of the cell to accommodate the checkmark/X character */
    text-align: center; /* Center the character within the cell */
}

.checkmark-cell[data-value='true']::before {
    content: '\2713'; /* Use the Unicode checkmark character */
    color: var(--dark);
}

.checkmark-cell[data-value='false']::before {
    content: '\2717'; /* Use the Unicode X character */
    color: var(--light);
}

.checkmark-cell-dark {
    font-size: 25px;
    width: 25px; /* Set the width of the cell to accommodate the checkmark/X character */
    text-align: center; /* Center the character within the cell */
}

.checkmark-cell-dark[data-value='false']::before {
    content: '\2713'; /* Use the Unicode checkmark character */
    color: var(--light);
}

.checkmark-cell-dark[data-value='true']::before {
    content: '\2717'; /* Use the Unicode X character */
    color: var(--light);
}

.form {
    flex-direction: column;
}

.colform {
    display: flex;
    flex-direction: column;
}

input,
textarea,
select {
    min-width: 70%;
    margin: 10px 5px;
}

td.nowrap{
    white-space: nowrap;
}

.app-form-button {
    margin-top: 15px;
    margin-bottom: 100px;
}

.warning {
    color: var(--btn-text);
    background-color: var(--red);
}

.successbtn {
    color: var(--btn-text);
    background-color: var(--green);
}

p.bold {
    font-weight: 700;
}

.bold {
    font-weight: 700;
    text-transform: uppercase;
}

.hidden {
    visibility: collapse;
}

.nextpagediv{
    display: flex;
    justify-content: space-around;

}

@media only screen and (max-width: 600px) {
    main {
        width: 100%;
    }

    header{
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .vert-center {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 15px 0px;
        width: 100%;
    }
}
