:root {
    --containerwidth: 1200px;
    --footerheight: 80px;
    --navbarheight: 100px;
    --mobilemenuitemheight: 60px;
    --speed: .3s;
    --space: 20px;

    /* Navbar background color */
    --navbarcolor: #5D6778;

    /* Navbar font and button color */
    --navbaritemcolor: #c1cddb;

    --lightestcolor: #dde3eb;
    --mainbody: #adb5be;

    /* Alternative bg color */
    --brcolor: #7f90a3;

    --footercolor: #111111;

    --phonecolor: #e7ebf0;

    /* Table colours */
    --tablecolor: #829ca6;
    --thcolor: #c9d5de;
    --oddrowcolor: #e7edf0;
    --evenrowcolor: white;
    --bordercolor: #829ca6;
}

.month_in_table td {
    font-weight: bold;
    background: var(--navbarcolor) !important;
    color: var(--evenrowcolor)
}

.profile_form {
    background-color: #616a6c;
    padding: var(--space);
}

.formline > button,
.noauth > button,
.jobtableform > button,
.auth > form > button {
    background-color: #045e19;
    color: #ffffff;
    border-radius: 5px;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    min-height: 2em;
    cursor: pointer;
}

.td_buttons > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    white-space: nowrap;
}

.jobtableform > input,
.jobtableform > button {
    padding: 3px 10px;
}

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

select {
    border-radius: 5px;
}

@media (max-width: 1024px) or (orientation: portrait) {
    .jobtableform > input,
    .jobtableform > button {
        width: 100%;
    }
}