body {
    font-family: Arial, sans-serif;
    font-weight: 100;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #474747;
}


:root {
    --gpg-green: #00969C;
    --gpg-green-background: #00969C90;
    --gpg-light-green-background: #91c8cb90;
    --gpg-grey: #1C1C1C;
    --main-background-color: rgb(238, 237, 237);
    --light-background-color: #f8f8f8;
    --form-input-border-color: rgb(211, 210, 210);
    --main-color: #474747;
    --main-color-lighter: #47474790;
    --timesheet-border: #a5a4a4;

    --pending-text: #faaf19;
    --pending-background: #faaf1950;
    --completed-text: #12e374;
    --completed-background: #12e37450;
}

input[type=date] {
    font-family: Arial, sans-serif;
}

input:focus {
    outline: none;
    border: var(--gpg-green) solid 1px;
    border-radius: 0;
}

textarea {
    font-family: Arial, sans-serif;
}

textarea:focus {
    outline: none;
    border: var(--gpg-green) solid 1px;
}

select {
    color: var(--main-color);
    border-radius: 0;
    border: var(--timesheet-border) solid 1px;
}

select:focus {
    outline: none;
    border: var(--gpg-green) solid 1px;
}

label {
    margin: 0;
    padding: 0;
}

input {
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 1030px) {
    .nav-content {
        background-color: var(--main-background-color);
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        height: 100vh;
        width: 100vw;
    }

    .nav-link {
        font-size: 1.5em;
        padding-left: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 2em;
    }

    .nav-link-text {
        border: none;
    }

    .menu-icon-container {
        width: 100%;
        position: absolute;
        display: flex;
        justify-content: center;
    }

    .menuIcon {
        height: 1em;
        width: 2em;
        border-left: var(--gpg-green) solid 1px;
        border-right: var(--gpg-green) solid 1px;
        border-bottom: var(--gpg-green) solid 1px;
        border-radius: 5%;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuIconArrow {
        width: 60%;
        margin: 0;
        padding: 0;
        transition: transform 0.3s ease;
    }

    .menuIconArrow.rotated {
        transform: rotate(180deg);
    }
    
    .gpg-logo-nav {
        display: none;
    }

    #logoutBtnContainer {
        display: flex;
        align-items: center;
        font-size: small;
        width: 100%;
        height: 2em;
        justify-content: center;
        padding: 0;
    }

    #logoutBtnContainer a {
        width: 30%;
        height: 100%;
        display: flex;
        justify-content: center;
        margin-top: 30%;
        text-decoration: none;
    }

    #logoutBtn {
        width: 100%;
        height: 100%;
    }
}

@media screen and (min-width: 1031px) {
    .nav-container {
        background-color: white;
        border-right: var(--gpg-green) solid 2px;
        width: 10vw;
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .nav-content {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    #nav-link-container {
        width: 100%;
        height: 30%;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        align-items: flex-start;
        gap: 3px;
    }
    
    .nav-link {
        border-left: var(--main-background-color) solid 3px;
        width: 100%;
        padding-left: 5px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 2em;
        font-size: small;
    }

    .nav-link-text {
        display: flex;
        justify-content: flex-start;
    }

    #logoutBtnContainer {
        display: flex;
        align-items: center;
        font-size: small;
        width: 100%;
        height: 3em;
        justify-content: center;
        margin-bottom: 2em;
        padding: 0;
    }

    #logoutBtnContainer, a {
        width: 100%;
        display: flex;
        justify-content: center;
        text-decoration: none;
    }

    #logoutBtn {
        width: 50%;
    }
    
    .gpg-logo-nav {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .flex {
        display: flex;
    }

    .menuIconArrow {
        display: none;
    }
}

/*@media screen and (max-width: 920px) {
    .nav-container {
        background-color: white;
        border-right: var(--gpg-green) solid 2px;
        width: 13vw;
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
}*/

.bold {
    font-weight: 600;
}
.darkGreenBackground {
    background-color: var(--gpg-green-background);
}

.lightGreyBackground {
    background-color: var(--light-background-color);
}

.smallerText {
    font-size: smaller;
}

.hidden {
    display: none;
}

.page-content {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    padding: 0;
}

.nav-link-text {
    text-decoration: none;
    color: #333;
}

.login-body {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.formBtns {
    display: flex;
    gap: 5px;
    align-items: flex-end;
}

form input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.logo {
    width: 120%;
}

.error {
    color: red;
    height: 1em;
    margin-top: 2px;
    margin-bottom: 0;
    padding-left: 5px;
}

.err {
    color: red;
    height: 20px;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    margin-left: auto;
}

.gpgBtn {
    border-radius: 0;
    border: var(--gpg-green) solid 1px;
    background-color: white;
    color: var(--gpg-green);
    height: 2.5em;
    padding: 0 2px;
    font-size: small;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

@media screen and (max-width: 499px) {
    .gpg-form-btn-container {
        width: 100%;
        height: 35px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 15px;
        padding-bottom: 20px;
    }    
}

@media screen and (min-width: 500px) {
    .gpg-form-btn-container {
        width: 100%;
        height: 70px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 15px;
        padding-bottom: 20px;
    }
}

.gpg-close-btn {
    border-radius: 0;
    border: var(--gpg-green) solid 1px;
    background-color: white;
    color: var(--gpg-green);
    height: 25px;
    width: 60px;
    padding: 0 2px;
    font-size: small;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.gpg-submit-btn {
    border-radius: 0;
    border: var(--gpg-green) solid 1px;
    background-color: var(--gpg-green);
    color: white;
    height: 30px;
    width: 80px;
    padding: 0 2px;
    font-size: small;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.login-form-container {
    width: 95%;
    height: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.loginFormInput {
    border-radius: 0;
    font-size: small;
    border: var(--form-input-border-color) solid 1px;
}

@media screen and (max-width: 1030px) {

    .view-container {
        width: 95%;
        height: 95%;
        margin-top: auto;
        margin-bottom: 1em;
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width: 1031px) {    
    .view-container {
        height: 95%;
        width: 95%;
        display: flex;
        flex-direction: column;
    }
}

.view-header-container {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 0 0.4em 0;
    font-size: small;
}

.view-header {
    font-weight: lighter;
    margin: 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.view-content-selector-container {
    display: flex;
    height: 30px;
    width: 100%;
}

.view-content-selector {
    width: 100px;
    font-size: x-small;
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--gpg-green) solid 1px;
    cursor: pointer;
    border-radius: 0;
}

.view-content-container {
    width: 100%;
    height: 90%;
    border-left: solid var(--gpg-green) 1px;
    border-right: solid var(--gpg-green) 1px;
    border-bottom: solid var(--gpg-green) 1px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.jobs-view-content-container {
    width: 100%;
    height: 93%;
    border: solid var(--gpg-green) 1px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.view-content {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
}

.form-input-container-radio {
    width: 100%;
    height: 25px;
    background: white;
    display: flex;
    gap: 15px;
}

.form-input-radio-option {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: small;
}

.form-input-radio {
    width: 20px;
}

.modal-container {
    width: 90%;
    height: auto;
    max-height: 90%;
    background: white;
    border: solid 1px var(--gpg-green);
    display: flex;
    justify-content: center;
    max-width: 700px;
    overflow-y: auto;
}

.modal {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    font-size: smaller;
}

.modal-content-container {
    width: 90%;
    height: 98%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.modal-header-container {
    width: 100%;
    display: flex;
    align-items: center;
    font-weight: lighter;
    border-bottom: 1px solid var(--timesheet-border);
    margin-bottom: 20px;
    padding: none;
}

.modal-form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (max-width: 550px) {
    .modal-form-row {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 50px;
    }
}

@media screen and (min-width: 551px) {
    .modal-form-row {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 70px;
    }    
}

.modal-form-textarea-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100px;
}      

.modal-form-label-container {
    width: 50%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-form-file-container {
    flex-grow: 1;
    height: 40%;
    border: none;
}

.modal-form-textarea-label-container {
    width: 50%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-form-textarea-container {
    flex-grow: 1;
    height: 40%;
}

.modal-form-textarea {
    width: 100%;
    height: 100%;
    padding: 5px;
    margin: 0;
    border: solid 1px var(--timesheet-border);
    border-radius: 0;
    color: var(--main-color);
    font-size: small;
    box-sizing: border-box;
    white-space: pre-wrap;
    text-align: top;
}

.modal-form-label {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: small;
}

.modal-form-input {
    width: 100%;
    height: 100%;
    padding: 0;
    padding-left: 5px;
    margin: 0;
    border: solid 1px var(--timesheet-border);
    border-radius: 0;
    color: var(--main-color);
    font-size: small;
    box-sizing: border-box;
}

.modal-form-file {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: var(--main-color);
    font-size: small;
    box-sizing: border-box;
    border: none;
}

.error-container {
    color: red;
    width: 100%;
    height: 10px;
    font-size: small;
    padding-left: 5px;
    margin-top: 5px;
    box-sizing: border-box;
}

.success-msg-container {
    width: 100%;
    height: 10px;
    color: var(--gpg-green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: smaller;
}


.form-container {
    width: 100%;
    height: 100%;
    display: flex;
    max-width: 800px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.form-header {
    width: 100%;
    height: 40px;
    border-bottom: var(--timesheet-border) solid 1px;
    font-size: large;
    display: flex;
}

.form-content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.form-row-container{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-row-header-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-textarea-container {
    width: 100%;
    height: 60px;
}

.form-label-container {
    width: 100%;
    height: 20px;
}

.form-input-container {
    width: 100%;
    height: 25px;
    background: white;
}

.form-label {
    width: 100%;
    height: 100%;
    font-size: small;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    border-radius: 0;
    border: solid 1px var(--timesheet-border);
    font-size: small;
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
    color: var(--main-color);
}

.form-btn-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px 0 20px 0;
}

.form-row-container-checkbox {
    display: flex;
    width: 100%;
    height: 25px;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.form-label-container-checkbox {
    width: 100px;
}

.form-input-checkbox-option {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.form-input-checkbox {
height: 50%;
}

/***** timesheets *****/
@media screen and (max-width: 1030px) {

    .timesheetContainer {
        width: 95%;
        height: 95%;
        margin-top: auto;
        margin-bottom: 1em;
        display: flex;
        flex-direction: column;
        font-size: small;
    }
}

@media screen and (min-width: 1031px) {    
    .timesheetContainer {
        height: 95%;
        width: 95%;
        display: flex;
        flex-direction: column;
        font-size: small;
    }
}

.timesheetHeaderContainer {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 0 0.4em 0;
}

#timesheetHeader {
    font-weight: lighter;
    margin: 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.timesheetNavContainer {
    display: flex;
    justify-content: flex-end;
    column-gap: 0.5em;
    height: 5%;
    margin-top: 1em;
    align-items: center;
    height: 3em;
}

.timesheetContentContainer {
    height: 95%;
    width: 100%;
    border: var(--gpg-green) solid 1px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.timesheetContent {
    height: 100%;
    width: 95%;
    display: flex;
    flex-direction: column;
    row-gap: 3px;
}

#jobSelectModal {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#jobSelectModalBackground {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: black;
    opacity: 30%;
    z-index: -1;
}

#jobSelectModalContent {
    width: 80%;
    max-width: 800px;
    height: 80%;
    background-color: white;
    border: var(--gpg-green) solid 1px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-weight: lighter;
}

@media screen and (max-width: 960px) {
    #jobSelectForm {
        width: 90%;
        max-width: 450px;
        height: 85%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 960px) {
    #jobSelectForm {
        width: 50%;
        max-width: 450px;
        height: 85%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
    }
}

.jobSelectionsContainer {
    padding-top: 1px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 6px;
    margin-bottom: 15px;
}

.selectJobInput {
    display: flex;
    justify-content: flex-start;
    height: 2em;
    align-items: center;
    margin-bottom: 5px;
    font-size: small;
    width: 100%;
    gap: 5px;
}

.selectJobInput > label {
    border: var(--gpg-green) solid 1px;
    background-color: var(--main-background-color);
    height: 100%;
    padding-left: 5px;
    padding-right: 5px;
    overflow-x: auto;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
}

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 50%;
    border-radius: 25%;
    border: var(--gpg-green) solid 1px;
    background-color: white;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="radio"]:checked {
    background-color: var(--gpg-green);
    border-color: var(--gpg-green);
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 50%;
    border-radius: 25%;
    border: var(--gpg-green) solid 1px;
    background-color: white;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="checkbox"]:checked {
    background-color: var(--gpg-green);
    border-color: var(--gpg-green);
}

#jobSelectModalCloseBtn {
    width: 4em;
    height: 2em;
}

#selectJobSubmitBtn {
    border-radius: 0;
    border: var(--gpg-green) solid 1px;
    background-color: var(--gpg-green);
    color: white;
    height: 2.5em;
    width: 6em;
    padding: 0 2px;
    font-size: small;
    font-weight: lighter;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.payweekMonthContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--timesheet-border) solid 1px;
    background-color: var(--main-background-color);
    padding: 4px;
    margin: 0;
    width: 15em;
    height: 50%;
    column-gap: 0.5em;
}

#payweekMonthStr {
    width: 50%;
    margin: 0;
    display: flex;
    justify-content: center;
}

#payweekMonth, #payweekYear {
    height: 100%;
}

.payweekSelectorContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: auto;
    column-gap: 5px;
}

#leftArrowContainer {
    width: 1.5em;
    height: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 2px;
    padding: 0;
}

#rightArrowContainer {
    width: 1.5em;
    height: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.arrow {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border: none;
    background-color: white;
    color: var(--gpg-green);
    border: var(--gpg-green) solid 1px;
    cursor: pointer;
}

.timesheetTableContainer {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    border: var(--timesheet-border) solid 1px;
    border-collapse: collapse;
}

.timesheetTable {
    border-spacing: 0;
    width: 100%;
}

#timesheetTableHead {
    width: 100%;
}

@media screen and (max-width: 1400px) {
    .dateContainer {
        width: 100px;
        min-width: 60px;
        margin: 0;
        padding: 0;
        background-color: var(--main-background-color);
        border-right: var(--timesheet-border) solid 1px;
        border-bottom: var(--timesheet-border) solid 1px;
    }
}

@media screen and (min-width: 1401px) {
    .dateContainer {
        width: 150px;
        min-width: 60px;
        margin: 0;
        padding: 0;
        background-color: var(--main-background-color);
        border-right: var(--timesheet-border) solid 1px;
        border-bottom: var(--timesheet-border) solid 1px;
    }
}

.inputContainer {
    text-align: center;
    margin: 0;
    padding: 0;
    border-right: var(--main-background-color) solid 1px;
    border-bottom: var(--main-background-color) solid 1px;
    font-size: small;
}

#jobHeader {
    background-color: var(--main-background-color);
}

.stickyCell {
    height: 3em;
    min-width: 60px;
    position: sticky;
    left: 0;
    background-color: #f9f9f9;
    z-index: 1;
    border: none;
    padding: 0;
    margin: 0;
    border-bottom: var(--timesheet-border) solid 1px;
    border-right: var(--timesheet-border) solid 1px;
    border-collapse: collapse;
}

.stickyCellContent > p {
    font-size: small;
}

@media screen and (max-width: 400px) {
    .stickyCellContent {
        height: 100%;
        width: 130px;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
    }
}
@media screen and (min-width: 401px) {
    .stickyCellContent {
        height: 100%;
        width: 150px;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
    }
}
@media screen and (min-width: 861px) {
    .stickyCellContent {
        height: 100%;
        width: 260px;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
    }
}

.timesheetBorderBtm {
    border-bottom: var(--timesheet-border) solid 1px;
}

.timesheetBorderTopLight {
    border-top: var(--main-background-color) solid 1px;
}

.dateCell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding-top: 0;
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    font-size: small;
}

.day {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 20%;
    color: #a5a5a5;
    font-weight: lighter;
}

.date {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    font-weight: lighter;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.timeInput {
    display: flex;
    width: 99%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: none;
    font-size: small;
}

.projects {
    margin: 0;
    padding: 0;
    width: auto;
    white-space: nowrap;
    display: inline-block;
}

#timesheetBtnContainer {
    display: flex;
    justify-content: flex-start;
    column-gap: 5px;
}

#addTableRowBtn {
    border-radius: 0;
    border: var(--gpg-green) solid 1px;
    background-color: white;
    color: var(--gpg-green);
    width: 8em;
    height: 2.5em;

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
}

@media screen and (max-width: 1400px) {
    .deleteRowContainer {
        width: 100px;
        min-width: 60px;
        margin: 0;
        padding: 0;
        background-color: var(--main-background-color);  
        text-align: center;
    }
}

@media screen and (min-width: 1401px) {
    .deleteRowContainer {
        width: 120px;
        min-width: 60px;
        margin: 0;
        padding: 0;
        background-color: var(--main-background-color);
        text-align: center;
    }
}

.deleteRowBtn {
    width: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deleteRowBtnImg {
    width: 1.5em;
}

.timesheet-table-day-total-container {
    font-size: small;
    color: var(--main-color);
    border-bottom: none;
}

.timesheet-table-day-total-container {
    font-size: small;
    color: var(--main-color);
    border-bottom: none;
    border-right: var(--main-background-color) solid 1px;
}

/***** leave *****/

#leaveHeader {
    font-weight: lighter;
    margin: 0 0 0.4em 0;
}

@media screen and (max-width: 1030px) {

    .leaveContainer {
        width: 95%;
        height: 95%;
        margin-top: auto;
        margin-bottom: 1em;
        display: flex;
        flex-direction: column;
        font-size: small;
    }
}

@media screen and (min-width: 1031px) {    
    .leaveContainer {
        height: 95%;
        width: 95%;
        display: flex;
        flex-direction: column;
        font-size: small;
    }
}

#leaveContentSelectorContainer {
    display: flex;
    height: 30px;
}

.borderBottom {
    flex-grow: 1;
    border-bottom: var(--gpg-green) 1px solid;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.leaveContentSelector {
    width: 80px;
    font-size: x-small;
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--gpg-green) solid 1px;
    cursor: pointer;
    border-top-left-radius: 5%;
    border-top-right-radius: 5%;
}

#leaveRequestSelector {
    border-bottom: none;
}

#leaveHistorySelector {
    border-left: none;
}

#leaveContentContainer {
    position: relative;
    flex-grow: 1;
    width: 100%;
    border-left: solid var(--gpg-green) 1px;
    border-right: solid var(--gpg-green) 1px;
    border-bottom: solid var(--gpg-green) 1px;
    background-color: white;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leaveContent {
    width: 95%;
    height: 95%;
    display: flex;
}

#note {
    height: 5em;
}

#leaveFormButtons {
    display: flex;
    justify-content: flex-end;
    column-gap: 1em;
    align-items: flex-end;
}

#hours-per-day {
    width: 50px;
    text-align: center;
}

#leave-form-success-msg {
    font-size: small;
}

#employee-leave-history-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#leave-history-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.employee-leave-container {
    width: 100%;
}

.employee-leave-container-header {
    font-size: large;
    margin-bottom: 10px;
    display: flex;
    cursor: pointer;
}

.employee-leave-list-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#employee-approved-leave-list, #employee-denied-leave-list {
    display: none;
}

#employee-leave-modal-container {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

 #leave-submit-alert-reset-btn {
    background: transparent;
    color: var(--gpg-green);
    border: solid 1px var(--gpg-green);
    border-radius: 0;
 }

 .employee-leave-request-info {
    display: flex;
    flex-grow: 1;
}

.leave-delete-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/** ----- admin ----- **/
@media screen and (max-width: 1030px) {

    .adminContainer {
        width: 95%;
        height: 95%;
        margin-top: auto;
        margin-bottom: 1em;
        display: flex;
        flex-direction: column;
        font-size: small;
    }
}

@media screen and (min-width: 1031px) {    
    .adminContainer {
        height: 95%;
        width: 95%;
        display: flex;
        flex-direction: column;
        font-size: small;
    }
}

#adminHeader {
    font-weight: lighter;
    margin: 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.adminHeaderContainer {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 0 0.4em 0;
}

#adminContentSelectorContainer {
    display: flex;
    height: 30px;
}

.adminContentSelector {
    width: 70px;
    font-size: x-small;
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--gpg-green) solid 1px;
    cursor: pointer;
    border-top-left-radius: 5%;
    border-top-right-radius: 5%;
}

#employeeTabSelector {
    border-bottom: none;
}

#jobsSelector {
    border-left: none;
}

#leaveSelector {
    border-left: none;
}

#safetySelector {
    border-left: none;
}

#purchaseOrderSelector {
    border-left: none;
    text-align: center;
}

#adminContentContainer {
    width: 100%;
    height: 90%;
    border-left: solid var(--gpg-green) 1px;
    border-right: solid var(--gpg-green) 1px;
    border-bottom: solid var(--gpg-green) 1px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.adminContent {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#admin-job-tab-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#admin-job-tab-content {
    width: 97%;
    height: 100%;
}

#add-job-btn-container {
    height: 3em;
    display: flex;
    align-items: center;
    padding-left: 1em;
    padding-top: 1em;
}

#add-job-btn {
    border: var(--gpg-green) solid 1px;
    background-color: white;
    color: var(--gpg-green);
    height: 70%;
    cursor: pointer;
}

#admin-job-list {
    overflow-y: auto;
    display: flex;
    height: 85%;
    flex-direction: column;
    gap: 5px;
    padding-left: 1em;
    padding-right: 1em;
}

.admin-job-list-headers {
    border-bottom: solid 1px var(--timesheet-border);
    height: 30px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 3px;
}


.admin-job-row {
    border: var(--timesheet-border) solid 1px;
    background-color: var(--light-background-color);
    height: 2em;
    display: flex;
    align-items: center;
    padding-left: 5px;
    max-width: 800px;
}

.admin-job-row-text {
    overflow-x: auto;
    white-space: nowrap;
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-size: small;
}

.admin-job-delete-btn {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

@media screen and (max-width: 376px) {
    .admin-job-delete-btn img {
        width: 90%;
    }
}

@media screen and (min-width: 377px) {
    .admin-job-delete-btn img {
        width: 80%;
    }
}

#add-job-modal-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
}

#add-job-form-container {
    width: 95%;
    max-width: 550px;
    height: 90%;
    background-color: white;
    border: var(--gpg-green) solid 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#add-job-form-container form {
    gap: 10px;
    width: 90%;
    max-width: 500px;
}

#add-job-form-heading {
    font-size: x-large;
}

.add-job-form-input {
    display: flex;
    flex-direction: column;
}

.add-job-form-input-sidebyside {
    display: flex;
    gap: 10px;
}

#add-job-form-input-number {
    width: 4em;
}

#add-job-form-input-number input {
    text-align: center;
}

#add-job-form-input-address {
    flex-grow: 1;
}

#add-job-submit-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
}

#add-form-reset-btn {
    background-color: white;
    color: var(--gpg-green);
    height: 80%;
    font-weight: lighter;
    width: 4em;
}

#add-form-submit-btn {
    width: 6em;
    background-color: var(--gpg-green);
    color: white;
}

#put-job-modal-container {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
}

#put-job-modal-content-container {
    width: 90%;
    height: 90%;
    max-width: 550px;
    border: solid 1px var(--gpg-green);
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#put-job-modal-number-address-row {
    width: 100%;
    display: flex;
    height: 50px;
    gap: 15px;
}

#put-job-modal-number-container {
    width: 15%;
    height: 100%;
}

#put-job-modal-address-container {
    flex-grow: 1;
    height: 100%;
}

#number {
    text-align: center;
    padding: 0;
    margin: 0;
}

.put-job-label-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 50%;
}

.put-job-input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 50%;
}

#put-job-is-complete-input-row {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.put-job-is-complete-input-container {
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: small;
}

.put-job-is-complete-input {
    height: 100%;
    width: 20px;
}

#admin-employee-tab-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#admin-employee-content {
    height: 96%;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#add-employee-btn-container {
    height: 50px;
    display: flex;
    align-items: center;
}

#add-employee-btn {
    border: var(--gpg-green) solid 1px;
    background-color: white;
    color: var(--gpg-green);
    height: 70%;
    cursor: pointer;
}

#admin-employee-list {
    overflow-y: auto;
    display: flex;
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
    flex-direction: column;
    gap: 5px;
}

.admin-employee-row {
    border: var(--timesheet-border) solid 1px;
    background-color: var(--light-background-color);
    height: 2em;
    display: flex;
    align-items: center;
    padding-left: 5px;
    max-width: 800px;
}

.admin-employee-row-text {
    overflow-x: auto;
    white-space: nowrap;
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: small;
}

.admin-employee-delete-btn {
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: none;
}

.admin-employee-delete-btn img {
    width: 80%;
}

#add-employee-modal-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

#admin-add-employee-modal-content-container {
    width: 95%;
    height: 95%;
    max-width: 550px;
    max-height: 800px;
    background-color: white;
    border: solid 1px var(--gpg-green);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#add-employee-modal-content {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#add-employee-modal-header {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

#add-employee-form-container {
    width: 100%;
    flex-grow: 1;
}

#add-employee-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

#add-employee-form-main-container {
    display: flex;
    gap: 5px;
    width: 100%;
    height: 100%;
    max-height: 400px;
}

#add-employee-form-label-container {
    height: 100%;
    width: 25%;
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.add-employee-form-label {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#add-employee-form-input-container {
    height: 100%;
    flex-grow: 1;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.add-employee-form-input {
    height: 50px;
    border-radius: 0;
    padding: 0;
    padding-left: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-employee-form-item {
    width: 100%;
    margin: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    border-radius: 0;
    padding-left: 5px;
}

#add-employee-err-container {
    width: 100%;
    height: 30px;
}

#add-employee-err {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    color: red;
}

#add-employee-form-btn-container {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

#add-employee-cancel-btn {
    border-radius: 0;
    border: solid 1px var(--gpg-green);
    color: var(--gpg-green);
    width: 70px;
    height: 25px;
}

#add-employee-submit-btn {
    border-radius: 0;
    background-color: var(--gpg-green);
    color: white;
    border: none;
    height: 35px;
    width: 80px;
    font-weight: lighter;
}

#admin-employee-put-modal-container {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#admin-put-employee-modal-content-container {
    width: 90%;
    height: 90%;
    max-width: 550px;
    max-height: 900px;
    border: solid 1px var(--gpg-green);
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#admin-put-employee-modal-content {
    width: 90%;
    height: 90%;
}

#admin-put-employee-modal-header {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: large;
    border-bottom: solid 1px var(--timesheet-border);
    margin-bottom: 15px;
}

#admin-put-employee-form-container {
    width: 100%;
}

#admin-put-employee-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.admin-put-employee-form-row {
    width: 100%;
    height: 40px;
    display: flex;
}

@media screen and (max-width: 500px) {
    .admin-put-employee-form-label {
        width: 30%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        font-size: small;
    }

    .admin-put-employee-form-input {
        flex-grow: 1;
        font-size: small;
        border-radius: 0;
        color: var(--main-color);
    }
}

.admin-put-employee-form-label {
    width: 30%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.admin-put-employee-form-input {
    flex-grow: 1;
    border-radius: 0;
    color: var(--main-color);
}

#admin-put-employee-btn-container {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px black;
    gap: 15px;
}

#admin-put-employee-close {

}

#admin-put-employee-submit {

}

#admin-leave-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
}

#admin-leave-content {
    width: 95%;
    height: 95%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.admin-leave-headers {
    width: 100%;
    height: 1.5em;
    font-size: large;
    padding: 0;
    margin-bottom: 5px;
    border-bottom: var(--timesheet-border) solid 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#pending-arrow img {
    height: 1em;
}

#pending-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    rotate: 0deg;
}

#approved-arrow img, #denied-arrow img {
    height: 1em;
}

#approved-arrow, #denied-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    rotate: -90deg;
}

.admin-leave-request-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.admin-leave-request {
    margin: 0;
    padding: 0;
}

#leave-approved-requests, #leave-denied-requests {
    display: none;
}

.admin-leave-request-row {
    height: 2.3em;
    width: 99.5%;
    max-width: 800px;
    border: solid 1px var(--timesheet-border);
    background-color: var(--light-background-color);
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: small;
}

@media screen and (max-width: 450px) {
    .admin-lr-row-name {
        padding-left: 5px;
        font-size: smaller;
    }

    .admin-lr-row-dates {
        padding-left: 5px;
        font-size: smaller;
    } 
}

.admin-lr-row-name {
    padding-left: 5px;
}

.admin-lr-row-dates {
    padding-left: 5px;
}

.admin-lr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    padding: 0;
}

.admin-lr-pending-icon {
    width: 20px;
}

.admin-lr-approved-icon {
    width: 17px;
}

.admin-lr-denied-icon {
    width: 20px;
    opacity: 60%;
}

.admin-lr-info {
    display: flex;
    flex-grow: 1;
}

#admin-leave-modal-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

#admin-leave-modal-content {
    width: 95%;
    height: 90%;
    border: solid 1px var(--gpg-green);
    background-color: white;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2em;
    gap: 15px;
}

.admin-lr-modal-icon {
    width: 30px;
    padding: 0;
    margin: 0;
}

#admin-lr-modal-form {
    width: 95%;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

@media screen and (max-width: 376px) {
    #admin-lr-modal-label-container {
        height: 100%;
        width: 30%;
        padding-right: 5px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-size: small;
    }

    #admin-lr-modal-value-container {
        height: 100%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-size: small;
    }
}

@media screen and (min-width: 377px) {
    #admin-lr-modal-label-container {
        height: 100%;
        width: 25%;
        padding-right: 5px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        font-size: small;
    }

    #admin-lr-modal-value-container {
        height: 100%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 25px;
        font-size: small;
    }

}

.admin-lr-modal-row {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: flex-end;
}

.admin-lr-modal-label {
    justify-content: flex-start;
    align-items: center;
}

.admin-lr-modal-value {
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    padding: 5px;
    border: var(--timesheet-border) solid 1px;
}

#admin-lr-modal-btn-container {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 5em;
    gap: 20px;
    padding-top: 15px;
}

#admin-lr-modal-approvedeny-btn-container {
    display: flex;
    width: 80%;
    gap: 15px;
}

.admin-lr-modal-approvedeny-btn {
    background-color: transparent;
    width: 50%;
    height: 30px;
    font-size: small;
    border: none;
}

#admin-lr-modal-approve-btn {
    background-color: #40C05780;
    border: solid 1px #40C057;
    color: #40C057;
}

#admin-lr-modal-deny-btn {
    background-color: #D22B2B80;
    border: solid 1px #D22B2B;
    color: #D22B2B;
}

#admin-lr-modal-close-btn {
    width: 5em;
    height: 2em;
    border-radius: 0;
    border: solid 1px var(--gpg-green);
    background-color: transparent;
    color: var(--gpg-green);
    cursor: pointer;
}

#admin-purchase-order-container {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#admin-purchase-order-content-container {
    width: 95%;
    height: 90%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

#admin-purchase-order-content-selector-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 95%;
    height: 30px;
}

.admin-purchase-order-content-selector {
    height: 100%;
    border: solid 1px var(--gpg-green);
    box-sizing: border-box;
    padding: 5px;
    margin: 0;
    background-color: var(--light-background-color);
    color: var(--timesheet-border);
    font-size: smaller;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#admin-purchase-order-content {
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 10px 0 0 0;
    max-width: 800px;
}

.admin-po-tab-header-container {
    width: 100%;
    height: 30px;
    display: flex;
}

.admin-po-tab-header {
    font-size: medium;
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
}

.admin-po-tab-add-btn-container {
    height: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.admin-po-tab-add-btn {
    border: solid 1px var(--gpg-green);
    background-color: var(--gpg-light-green-background);
    height: 80%;
    color: var(--main-color);
    font-size: smaller;
    cursor: pointer;
}

.admin-po-tab-list {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.admin-po-list-row {
    display: flex;
    width: 100%;
    height: 30px;
    border-bottom: solid 1px var(--main-background-color);
    color: var(--timesheet-border);
}

.admin-po-list-row-info {
    height: 40px;
    color: var(--main-color);
}

.admin-po-item-name-col {
    height: 100%;
    width: 30%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 5px;
}

.admin-po-item-description-col {
    height: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 5px;
}

.admin-po-store-name-col {
    height: 100%;
    width: 30%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 5px;
}

.admin-po-store-address-col {
    height: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 5px;
}

.admin-po-history-store-col {
    height: 100%;
    width: 30%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 5px;
}

.admin-po-history-job-col {
    height: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 5px;
}

.admin-po-actions-col {
    height: 100%;
    width: 15%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    padding-left: 5px;
}

.admin-po-actions-container {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.admin-po-actions-btn {
    height: 80%;
    width: 20px;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.admin-po-delete-img {
    width: 19px;
    height: 19px;
}

.admin-po-update-img {
    width: 15px;
    height: 15px;
}

.admin-po-view-img {
    width: 20px;
    height: 20px;
}

#admin-po-modal-container {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

.item-modal {
    height: auto;
}

.store-modal {
    height: auto;
    max-height: 90%;
}

.size-modal {
    height: auto;
}

.close-modal-btn {
    border: none;
    background-color: white;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    font-size: medium;
    cursor: pointer;
}

/* ----- reports ----- */
@media screen and (max-width: 1030px) {

    .reportsContainer {
        width: 95%;
        height: 95%;
        margin-top: auto;
        margin-bottom: 1em;
        display: flex;
        flex-direction: column;
        font-size: small;
    }
}

@media screen and (min-width: 1031px) {    
    .reportsContainer {
        height: 95%;
        width: 95%;
        display: flex;
        flex-direction: column;
        font-size: small;
    }
}

#reportsContentContainer {
    flex-grow: 1;
    width: 100%;
    border: var(--gpg-green) solid 1px;
    background-color: white;
    overflow-y: auto;
    padding-top: 1em;
}

#reportsHeader {
    font-weight: lighter;
    margin: 0 0 0.4em 0;
}

#timesheet-report-content-selector {
    border-bottom: none;
}

#job-report-content-selector {
    border-left: none;
}

.timesheet-report-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 97%;
    font-size: smaller;
}

#timesheetReportNavContainer {
    display: flex;
    gap: 1em;
    height: 2em;
    padding: 0;
    margin: 0 0 1em 0;
}

#employeeSelector {
    height: 100%;
    background-color: var(--main-background-color);
    font-size: smaller;
    width: 160px;
}

#weekSelectorContainer {
    display: flex;
    gap: 5px;
    width: 4em;
    height: 2em;
}

#leftWeekSelectorBtn, #rightWeekSelectorBtn {
    background-color: var(--main-background-color);
}

#timesheetReport {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    overflow-y: auto;
}

.timesheetReportTable {
    width: 100%;
    margin-top: 5px;
    border-collapse: collapse;
}

.timesheetReportTableRow > th, td {
    border-bottom: var(--timesheet-border) solid 1px;
    border-collapse: collapse;
    text-align: center;
}

.timesheetReportTableRow > th {
    background-color: var(--main-background-color);
}

.timesheetReportTableRow:first-child > th, td {
    width: 50px;
    overflow: hidden;
}

 .timesheetReportDay {
    color: var(--timesheet-border);
 }

 .timesheetReportDay, .timesheetReportDate {
    margin: 0;
    padding: 0;
    font-weight: lighter;
 }

 #timesheet-report-additional-info-container {
    width: 100%;
    flex-grow: 1;
    margin-top: 1em;
    margin-bottom: 1em;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
 }

 #timesheet-report-info-header {
    width: 100%;
    border-bottom: solid 1px var(--timesheet-border);
    padding-bottom: 5px;
    font-weight: bold;
 }

 #timesheet-report-summary-container {
    width: 100%;
    display: flex;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: solid 1px var(--timesheet-border);
 }

 #timesheet-report-summary-label-container {
    width: 30%;
    max-width: 150px;
    height: 100%;
 }

 #timesheet-report-summary-info-container {
    flex-grow: 1;
    height: 100%;
 }

 .timesheet-report-summary-row {
    height: 2em;
    display: flex;
    align-items: flex-end;
 }

 .timesheet-report-summary-label {
    font-weight: bold;
 }

#report-leave-request-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 5px;
}

.report-leave-request-row {
    width: 99.5%;
    max-width: 600px;
    border: solid 1px var(--timesheet-border);
    background-color: var(--light-background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: small;
}

.report-leave-request-row-unclicked {
    height: 2.3em;
    width: 100%;
    display: flex;
    align-items: center;
}

.report-leave-request-row-expanded {
    width: 100%;
    height: 150px;
    display: none;
    padding-top: 5px;
    padding-bottom: 5px;
}

@media screen and (max-width: 550px) {
    .report-leave-expanded-label-container {
        width: 25%;
        gap: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (min-width: 551px) {
    .report-leave-expanded-label-container {
        width: 20%;
        gap: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}

.report-leave-expanded-info-container {
    flex-grow: 1;
    gap: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
}

@media screen and (max-width: 550px) {
    .report-leave-expanded-content {
        padding-left: 5px;
        height: 2.3em;
        width: 100%;
        font-size: smaller;
        align-items: center;
    }
}


.report-leave-expanded-content {
    padding-left: 5px;
    height: 2.3em;
    height: 95%;
    width: 95%;
    display: flex;
    align-items: center;
}

.report-leave-info {
    border: solid 1px var(--timesheet-border);
    background: white;
}

#job-report-container {
    display: flex;
    flex-direction: column;
    font-size: smaller;

    height: 97%;
    width: 100%;
}

#job-report-job-selector select {
    font-size: smaller;
    height: 27px;
    background-color: var(--main-background-color);
    width: 160px;
}

#job-report {
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 10px 0 0 0;
}

#job-report-content {
    width: 99%;
    height: 99%;
    border: solid 1px var(--gpg-green);
    background-color: var(--main-background-color);
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 10px;
    gap: 10px;
}

#job-report-duration-container {
    width: 99%;
    height: 20px;
    display: flex;
    justify-content: flex-start;
}

#job-report-duration-selector {
    border: solid 1px var(--gpg-green);
    background-color: white;
    width: 150px;
    height: 100%;
    display: flex;
    font-size: smaller;
}

.job-report-duration {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#job-report-graphics-container {
    width: 99%;
    border: solid 1px var(--gpg-green);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#job-report-graph {
    display: flex;
    justify-content: center;
    align-items: center;
}

#job-report-chart {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1030px) {
    #job-report-overview-container {
        width: 99%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media screen and (min-width: 1031px) {
    #job-report-overview-container {
        width: 99%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }  
}

.job-report-overview-metric-container {
    height: 140px;
    width: 140px;
    border: solid 1px var(--gpg-green);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.job-report-metric-icon {
    width: 20px;
    height: 30px;
    margin: 0;
    padding: 0;
}

.job-report-metric-header {
    width: 100%;
    height: 30px;
    white-space: normal;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.job-report-metric-value {
    width: 100%;
    height: 30px;
    white-space: normal;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: large;
    margin: 0;
    padding: 0;
}

#job-report-employee-breakdown-container {
    width: 99%;
    border: solid 1px var(--gpg-green);
    background-color: white;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 10px;
    gap: 10px;
}

#job-report-employee-breakdown-header-container {
    display: flex;
    align-items: flex-end;
    height: 30px;
    width: 100%;
}

#job-report-employee-header-img-container {
    height: 60%;
    width: 30px;
    transform: translateY(-3px);
}

#job-report-employee-header-img {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#job-report-employee-header {
    display: flex;
    align-items: flex-end;
    font-size: large;
    padding: 0;
    margin: 0;
    height: 100%;
    flex-grow: 1;
}

#job-report-employee-breakdown {
    display: flex;
    height: 400px;
    overflow-y: auto;
}

#job-report-employee-table-container {
    width: 100%;
}

#job-report-employee-table {
    width: 100%;
}

.job-report-employee-table-row {
    width: 100%;
    height: 40px;
    display: flex;
    border-bottom: 1px solid var(--timesheet-border);
}

.job-report-employee-table-row > * {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.arrow-cell {
    width: 8%;
    justify-content: center;
    cursor: pointer;
}

.job-report-arrow-img {
    width: 15px;
    height: 15px;
}

.employee-cell {
    width: 25%;
    gap: 2px;
}

.job-report-employee-img {
    width: 12px;
    height: 12px;
    transform: translateY(-2px);
}

.id-cell {
    flex-grow: 1;
}

.hours-cell {
    width: 20%;
}

.days-cell {
    width: 20%;
}

.job-report-employee-breakdown {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--main-background-color);
}

.job-report-employee-breakdown-header-container {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 8%;
    font-size: medium;
}

#job-report-employee-breakdown-timesheet-icon {
    width: 12px;
}

.job-report-employee-breakdown-container {
    width: 100%;
    display: flex;
    margin-bottom: 10px;
}

.job-report-vacant-col {
    width: 8%;
}

.job-report-week-start-col {
    width: 25%;
}

.job-report-week-hrs-col {
    flex-grow: 1;
}

.job-report-day-col {
    width: 20%;
}

.job-report-hrs-col {
    width: 20%;
}

.job-report-val {
    height: 30px;
    display: flex;
    align-items: center;
    border-bottom: var(--timesheet-border) 1px solid;
    color: var(--gpg-grey);
}

/* ----- dashboard ----- */
@media screen and (max-width: 1030px) {

    #dashboard-container {
        width: 95%;
        height: 95%;
        margin-top: auto;
        margin-bottom: 1em;
        display: flex;
        flex-direction: column;
        font-size: small;
    }
}

@media screen and (min-width: 1031px) {    
    #dashboard-container {
        height: 95%;
        width: 95%;
        display: flex;
        flex-direction: column;
        font-size: small;
    }
}

#dashboard-header-container {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 0 0.4em 0;
}

#dashboard-header {
    font-weight: lighter;
    margin: 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

@media screen and (max-width: 1030px) {
    #dashboard-content-container {
        height: 100%;
        width: 100%;
        border: var(--gpg-green) solid 1px;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        box-sizing: border-box; 
        padding: 15px 5px 15px 5px;  
        overflow-y: auto; 
    }

    #dashboard-content {
        width: 100%;
        height: 40%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 3px;
        box-sizing: border-box;
    }
    
    .dashboard-tile-container {
        width: 48.97%;
        height: 170px;
        border: var(--gpg-green) solid 1px;
        background-color: var(--main-background-color);
    }
}

@media screen and (min-width: 1031px) {
    #dashboard-content-container {
        height: 95%;
        width: 100%;
        border: var(--gpg-green) solid 1px;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        box-sizing: border-box; 
        padding: 15px 15px 0 15px;   
    }

    #dashboard-content {
        width: 100%;
        height: 50%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .dashboard-tile-container {
        width: 180px;
        height: 180px;
        border: var(--gpg-green) solid 1px;
        background-color: var(--main-background-color);
    }
}

.dashboard-tile-content {
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--main-color);
    flex-direction: column;
}

#dashboard-tile-icon-container {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dashboard-tile-icon-container img {
    width: 30px;
}

#dashboard-tile-title-container {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ----- error ----- */
#nav-to-login-btn-container {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

#nav-to-login-btn {
    cursor: pointer;
    width: 100px;
    height: 80%;
    border: solid 1px var(--gpg-green);
    background: transparent;
    color: var(--gpg-green);
}

/* ----- safety ----- */
#incident-report-content-selector {
    border-bottom: none;
}

#swm-content-selector {
    border-left: none;
}

#inc-actions-input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: small;
}

.inc-actions-input-row {
    height: 25px;
    width: 100%;
    display: flex;
    gap: 5px;
}

.inc-actions-date-column {
    width: 15%;
    height: 100%;
    display: flex;
    align-items: center;
}

.inc-actions-action-column {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
}

.inc-actions-name-column {
    height: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

#admin-safety-tab-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#admin-safety-tab-content {
    width: 95%;
    height: 97%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#admin-safety-tab-content-toggle-container {
    height: 80%;
    width: 100%;
    display: flex;
    align-items: flex-end;
}

#admin-safety-content-container {
    width: 100%;
    height: 100%;
    display: flex;
    font-size: small;
}

@media screen and (max-width: 1029px) {
    #admin-safety-content {
        width: 100%;
        height: 100%;
        border: solid 1px var(--gpg-green);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #admin-safety-pdf-viewer {
        width: 100%;
        height: 100%;
        border: solid 1px var(--gpg-green);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: auto;
    }
}

@media screen and (min-width: 1030px) {
    #admin-safety-content {
        width: 30%;
        border: solid 1px var(--gpg-green);
        margin-right: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #admin-safety-pdf-viewer {
        border: solid 1px var(--gpg-green);
        width: 70%;  
        display: flex; 
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: auto;
    }
}

#admin-swm-content-container {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
}

#admin-swm-header {
    height: 20px;
    font-size: small;
    padding: none;
    display: flex;
    align-items: flex-end;
}

.admin-swm-list-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-bottom: var(--main-background-color) solid 1px;
    font-size: small;
    box-sizing: border-box;
    padding: 5px 0 5px 0;
    gap: 5px;
}

.admin-swm-list-row-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

#admin-swm-delete-btn {
    margin-left: auto;
}

.list-container {
    width: 95%;
    height: 100%;
    overflow-y: auto;
}

.list-header {
    border-bottom: var(--timesheet-border) solid 1px;
    padding: 0;
    margin: 0;
    margin-bottom: 3px;
    margin-top: 3px;
    height: 25px;
    display: flex;
    align-items: flex-end;
}

.incident-report-list-item {
    border-bottom: var(--main-background-color) solid 1px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.incident-report-list-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.incident-report-list-item-btn-container {
    width: 100%;
    height: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.incident-report-list-item-btn {
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border: solid 1px var(--gpg-light-green-background);
    background-color: var(--main-background-color);
    cursor: pointer;
}

.incident-report-list-item-btn img {
    width: 90%;
    height: 90%;
}

.admin-safety-pdf {
    width: 100%;
    height: 100%;
    border: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#close-pdf-viewer-btn-container {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

#close-pdf-btn {
    height: 80%;
    width: 70px;
    border: var(--gpg-green) solid 1px;
    background-color: var(--gpg-green-background);
    color: white;
    display: none;
    font-size: x-small;
    cursor: pointer;
}

#put-incident-form-container {
    width: 95%;
}

#swms-close-pdf-btn {
    height: 80%;
    width: 80px;
    border: var(--gpg-green) solid 1px;
    background-color: var(--gpg-green-background);
    color: white;
    display: none;
    font-size: x-small;
    cursor: pointer;
    margin-left: auto;
}

#swms-header-text {
    height: 100%;
    display: flex;
    align-items: center;
}

#add-swms-btn-container {
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

#add-swms-btn {
    border: solid 1px var(--gpg-green);
    color: var(--gpg-green);
    border-radius: none;
    background-color: white;
    cursor: pointer;
    height: 75%;
}

#swms-form-header {
    display: flex;
    align-items: flex-end;
}

#swms-form-content-container {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    overflow-y: auto;
}

#swm-user-content-container {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 15px 0 15px 0;
}

#swm-main-content-container {
    display: flex;
    height: 100%;
    width: 100%;
    gap: 15px;
}

@media screen and (max-width: 1030px) {
    #swm-list-container {
        border: solid 1px var(--gpg-green);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        padding: 10px;
    }

    #swm-viewer-container {
        border: solid 1px var(--gpg-green);
        flex-grow: 1;
        height: 100%;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: small;
        gap: 10px;
    }
}

@media screen and (min-width: 1031px) {
    #swm-list-container {
        border: solid 1px var(--gpg-green);
        width: 30%;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        padding: 10px;
    }

    #swm-viewer-container {
        border: solid 1px var(--gpg-green);
        flex-grow: 1;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: small;
        gap: 10px;
    }
}

#swm-viewer-icon {
    width: 30px;
}

#swm-header {
    display: flex;
    align-items: flex-end;
    font-size: small;
    height: 30px;
    margin-bottom: 10px;
}
    
.swm-list-row {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 50px;
    width: 100%;
    font-size: small;
}

.swm-list-row-icon {
    width: 20px;
}

.swm-list-row-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

.swm-list-row-name {
    height: 40%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    font-weight: bold;
}

.swm-list-row-file-name {
    height: 40%;
    width: 100%;
    color: var(--timesheet-border);
    display: flex;
    align-items: flex-end;
}

#swms-equipment-checklist {
    display: flex;
    width: 100%;
    max-width: 450px;
}

.swms-equipment-checklist-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swms-equipment-checklist-container div {
    height: 40px;
    display: flex;
    align-items: center;
}

.swms-hazards-row-header {
    width: 100%;
    display: flex;
    font-weight: bold;
}

.swms-hazards-row-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.swms-sign-container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.swms-sign-row {
    width: 100%;
    display: flex;
    gap: 5px;
    box-sizing: border-box;
}

.swms-sign-row input {
    height: 100%;
    width: 100%;
}

.swms-sign-date-col {
    height: 25px;
    width: 20%;
    display: flex;
    align-items: center;
}

.swms-sign-name-col {
    height: 25px;
    width: 35%;
    display: flex;
    align-items: center;
}

.swms-sign-sig-col {
    height: 25px;
    width: 45%;
    display: flex;
    align-items: center;
}

.swms-list-btn-container {
    height: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: var(--main-background-color) solid 1px;
    padding-bottom: 15px;
}

.swms-list-btn-container div {
    height: 28px;
    width: 28px;
    cursor: pointer;
    background-color: var(--main-background-color);
    border: solid 1px var(--gpg-light-green-background);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swms-list-view-btn img {
    height: 20px;
}

.swms-list-update-btn img {
    height: 15px;
}

.swms-list-download-btn img {
    height: 20px;
}

.swms-list-delete-btn img {
    height: 20px;
}

.swms-list-delete-btn {
    margin-left: auto;
}

.swms-list-container {
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
}

/* ---- purchase order ---- */
#employee-purchase-order-history-container {
    width: 100%;
    height: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: smaller;
    box-sizing: border-box;
    padding: 10px 0 10px 0;
}

#purchase-order-content-selector {
    background-color: white;
    border-bottom: none;
}

#purchase-order-history-content-selector {
    border-left: none;
}

#purchase-order-new-item-btn-container {
    height: 25px;
}

#purchase-order-new-item-btn {
    width: 130px;
    height: 100%;
    border-radius: none;
    border: solid 1px var(--gpg-green);
    background-color: var(--gpg-green-background);
    color: white;
    cursor: pointer;
    font-size: small;
}

#purchase-order-item-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.purchase-order-item-row {
    width: 100%;
    height: 25px;

    display: flex;
    gap: 5px;

    font-size: small;
    box-sizing: border-box;
}

.purchase-order-qty-col {
    height: 100%;
    width: 40px;
}

.purchase-order-type-col {
    height: 100%;
    width: 100px;
}

.purchase-order-size-col {
    height: 100%;
    width: 100px;
}

.purchase-order-name-col {
    height: 100%;
    flex-grow: 1;
}

.purchase-order-delete-col {
    height: 100%;
    width: 23px;
    padding: 0;
    margin: 0;
}

.purchase-order-delete-btn {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
}

.purchase-order-delete-btn img {
    height: 95%;
    width: 95%;
    padding: 0;
    margin: 0;
}

#po-modal-content {
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
}

@media screen and (max-width: 900px) {
    #po-modal-summary-container {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .po-modal-info-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
}

@media screen and (min-width: 901px) {
    #po-modal-summary-container {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .po-modal-info-container {
        display: flex;
        flex-direction: column;
        width: 50%;
        gap: 10px;
    }   
}

.order-info-container {
    display: flex;
    gap: 5px;
    width: 100%;
}

.po-modal-info-header {
    font-size: medium;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

.order-info-label-col {
    width: 35%;
    display: flex;
    flex-direction: column;
}

.order-info-col {
    width: 65%;
    display: flex;
    flex-direction: column;
}

.order-info-label {
    width: 100%;
    height: 35px;
    color: var(--main-color-lighter);
}

.order-info {
    width: 100%;
    height: 35px;
}

#po-modal-item-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#order-items-table {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.order-item-row {
    width: 100%;
    height: 35px;
    display: flex;
}

.item-table-headers {
    border-bottom: 1px solid var(--main-background-color);
    color: var(--main-color-lighter);
}

.item-table-items {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 3px;
    overflow-x: auto;
    text-wrap: nowrap;
}

.item-item-col {
    width: 55%;
    height: 100%;
}

.item-type-col {
    width: 25%;
    height: 100%;
}

.item-quantity-col {
    width: 20%;
    height: 100%;
    justify-content: flex-end;
}

/* ----- job notes ----- */
#jobnotes-content-container {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 0 10px 10px 10px;
}

#active-job-count-container {
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#active-job-header {
    padding: 0;
    margin: 0;
    color: black;
    height: 30px;
    display: flex;
    align-items: center;
}

#active-job-count {
    padding: 0;
    margin: 0;
    font-size: smaller;
    flex-grow: 1;
}

@media screen and (max-width: 680px) {
    .jobnote-tiles {
        width: 100%;
        flex-grow: 1;
        overflow-y: auto;
    }

    .jobnote-tile-container {
        width: 100%;
        background-color: var(--light-background-color);
        border: solid 1px var(--gpg-green);
        margin-bottom: 5px;
        box-sizing: border-box;
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        cursor: pointer;
    }
}

@media screen and (min-width: 681px) {
    .jobnote-tiles {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fill, 300px);
        gap: 15px;
    }

    .jobnote-tile-container {
        width: 300px;
        min-width: 300px;
        height: 130px;
        min-height: 130px;
        background-color: var(--light-background-color);
        border: solid 1px var(--gpg-green);
        margin-bottom: 5px;
        box-sizing: border-box;
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        cursor: pointer;
    }
}

.jobnote-icon-container{
    width: 20px;
    height: 20px;
}

.jobnote-icon-container img {
    width: 100%;
    height: 100%;
}

.jobnote-header-container {
    color: black;
}

.jobnote-address-container {
    font-size: smaller;
    display: flex;
    align-items: center;
}
.jobnote-address-container img {
    width: 12px;
    height: 12px;
}

.note-count-container {
    display: flex;
    height: 20px;
    gap: 15px;
    align-items: center;
}

.note-count {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: smaller;
    gap: 3px;
}

.note-count img {
    height: 100%;
}

.job-notes-header-container {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0;
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: var(--timesheet-border) solid 1px;
}

#job-notes-back-container {
    height: 30px;
}

#job-notes-back-container img {
    height: 100%;
    cursor: pointer;
}

#job-notes-header {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: smaller;
}

#job-notes-title {
    font-size: large;
    display: flex;
    align-items: center;
}

#job-notes-subtitle {
    color: var(--timesheet-border);
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    padding-bottom: 5px;
}

#job-notes-location-img {
    margin-right: 3px;
}

#job-notes-location-img img {
    height: 12px;
    translate: 0 0.1em;
}

#in-progress {
    background-color: var(--gpg-light-green-background);
    border-radius: 25px;
    color: var(--gpg-green);
    font-size: smaller;
    box-sizing: border-box;
    padding: 5px 8px;
}

#completed {

}

#notes {
    width: 100%;
    flex-grow: 1;
    background-color: var(--light-background-color);
    overflow-y: auto;
    position: relative;
}

.notes-content-container {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 10px;
}

.notes-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    padding: 10px 0;
}

.notes-title {
    width: 100px;
}

.notes-header img {
    height: 20px;
}

.note-counter {
    background-color: var(--main-background-color);
    border-radius: 25px;
    box-sizing: border-box;
    padding: 5px 10px;
    font-size: smaller;
}

@media screen and (max-width: 680px) {
    .notes-container {
        width: 100%;
        flex-grow: 1;
        overflow-y: auto;
    }

    .paint-note-container {
        width: 100%;
        background-color: white;
        border: solid 1px var(--gpg-green);
        margin-bottom: 5px;
        box-sizing: border-box;
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .image-note-container {
        width: 100%;
        background-color: white;
        border: solid 1px var(--gpg-green);
        margin-bottom: 5px;
        box-sizing: border-box;
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

@media screen and (min-width: 681px) {
    .notes-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fill, 350px);
        gap: 15px;
    }

    .image-notes-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fill, 500px);
        gap: 15px;
    }

    .paint-note-container {
        width: 350px;
        min-width: 350px;
        background-color: white;
        border: solid 1px var(--gpg-green);
        margin-bottom: 5px;
        box-sizing: border-box;
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .image-note-container {
        width: 500px;
        height: 500px;
        background-color: white;
        border: solid 1px var(--gpg-green);
        margin-bottom: 5px;
        box-sizing: border-box;
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        cursor: pointer;
    }
}

.paint-note-header-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.paint-note-btn-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 30px;
}

.paint-note-product {
    color: black;
    font-weight: 500;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.note-delete-btn {
    margin-left: 15px;
    color: var(--gpg-green);
    border: none;
    border-radius: 5px;
    background-color: var(--gpg-light-green-background);
    box-sizing: border-box;
    padding: 4px;
    font-size: x-small;
    height: 20px;
    width: 20px;
    cursor: pointer;
}

.update-note-button {
    margin-left: 15px;
    color: var(--gpg-green);
    border: none;
    border-radius: 5px;
    background-color: var(--gpg-light-green-background);
    box-sizing: border-box;
    padding: 4px;
    font-size: x-small;
    height: 20px;
    width: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.update-note-button img {
    width: 90%;
    height: 90%;
}

.paint-note-brand {
    font-size: smaller;
}

.paint-note-details-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.paint-note-detail {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: smaller;
    height: 50px;
    justify-content: center;
}

.paint-note-detail-header {
    color: black;
    font-weight: bold;
}

.paint-note-note-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 50px;
    font-size: smaller;
}

.paint-note-note-header {
    width: 100%;
    height: 35%;
    color: black;
    font-weight: bold;
}

.paint-note-note {
    width: 100%;
    flex-grow: 1;
}

.task-notes-container {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.task-note-container {
    width: 100%;
    border: solid 1px var(--gpg-green);
    background-color: white;
    box-sizing: border-box;
    padding: 15px;
}

.task-note-header-container {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
}

.task-note-title-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30px;
}

.task-note-title {
    font-weight: 600;
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.task-note-progress-container {
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.task-note-pending-img {
    width: 20px;
}

.task-note-completed-img {
    width: 18px;
}

.task-note-pending {
    font-size: smaller;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 5px 7px;
    color: var(--pending-text);
    background-color: var(--pending-background);
}

.task-note-completed {
    font-size: smaller;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 5px 7px;
    color: var(--completed-text);
    background-color: var(--completed-background);
}

.task-note-description-container {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: smaller;
}

.task-note-priority-container {
    display: flex;
    width: 100%;
    height: 30px;
    gap: 5px;
    font-size: smaller;
    align-items: center;
}

.task-note-notes-container {
    display: flex;
    flex-direction: column;
    height: 40px;
    font-size: smaller;
    justify-content: center;
}

.task-note-notes-header {
    height: 30%;
    display: flex;
    align-items: center;
}

.task-note-notes {
    flex-grow: 1;
    width: 100%;
    display: flex;
}

.image-note-btn-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 30px;
}

@media screen and (max-width: 680px) {
    .image-note-img-container {
        width: 100%;
        height: 200px;
        background-color: var(--light-background-color);
        border-radius: 10px;
        overflow-y: hidden;
    }
}

@media screen and (min-width: 681px) {
    .image-note-img-container {
        width: 100%;
        height: 300px;
        background-color: var(--light-background-color);
        border-radius: 10px;
        overflow-y: hidden;
    }
}

.image-note-img-container img {
    height: 100%;
    width: 100%;
}

.image-note-info-container {
    font-size: smaller;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.image-note-caption-container {
    height: 25px;
    display: flex;
    align-items: center;
}

.image-note-area-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.image-note-notes-container {
    width: 100%;
    height: 50px;
}

.image-note-notes-header {
    height: 35%;
    display: flex;
    align-items: center;
}

.image-note-notes {
    flex-grow: 1;
    width: 100%;
    display: flex;
}

.add-note-btn {
    font-size: large;
    box-sizing: border-box;
    border: none;
    background-color: var(--gpg-light-green-background);
    color: var(--gpg-green);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#note-modal {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.note-modal-close-btn {
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 24px;
    border: none;
    border-radius: 5px;
    background-color: var(--gpg-light-green-background);
    color: var(--gpg-green);
    font-size: x-small;
    font-weight: bold;
    cursor: pointer;
}

.paint-note-archive-container {
    flex-grow: 1;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}

.task-note-archive-container {
    margin-left: auto;
}

.image-note-archive-container {
    margin-right: auto;
    flex-grow: 1;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}

.note-archive-btn {
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: var(--gpg-light-green-background);
    border-radius: 5px;
    cursor: pointer;
}

.note-archive-btn img {
    height: 80%;
}

#archived-notes-btn-container {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 10px 10px 0 10px;
}

.archived-notes-btn {
    background-color: var(--gpg-light-green-background);
    color: var(--gpg-green);
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 5px;
    cursor: pointer;
}

