body {
    color: white;
    background-color: #0a0a0a;
    /*font-family: "Barlow Condensed", sans-serif;*/
    font-family: 'Lato', sans-serif;
    padding: 1em 1em 0 0;
}

nav {
    height: 3em;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    color: #042c86;
}
nav ul {
    /*background: url("../images/Jack-Jones-logo-bc85f71ea672e78dde9d5e850f9fb0c1.png") #121314 2em 1em no-repeat;*/
    height: 3em;
    list-style: none;
    margin: 0;
    padding: 0 0 0 200px;
}

nav ul li {
    display: block;
    float: left;
    font-weight: bold;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a:hover {
    background: #042c86;
}

.main-container {
    margin: 0 auto;
}

a {
    color: white;

    &:hover {
        color: #042c86;
    }

    text-decoration: none;
}

button {
    background: #042c86 !important;
    color: white !important;

    &:hover {
        background: #0244c5 !important;
    }
}

button.delete-icon {
    background: var(--bs-danger) !important;
}
.add-shift-icon {
    cursor: pointer;
    color: green;
}

.new-shift-inputs {
    display: none;
    margin-top: 10px;
}


.dashboard-iframe {
    width: 100%;
    height: 80vh;
    display: none;
}

.table-container {
    background-color: #d6d6d6 !important;
    overflow-x: scroll;
    overflow-y: visible;
    color: black;
    border-radius: 10px;

}

td {
    border-right: 1px solid #aeaeae;
}
td:nth-child(n+2) {
    text-align: right !important;
    /*padding-right: 1em;*/
}

.shift-status-selector {
    /* on hover highlight the row */
    cursor: pointer;
    &:hover {
        font-weight: bolder !important;
    }
}

@media only screen and (max-width: 600px) {

    .table-container {
        overflow-x: scroll;
        font-size: 1em;
        margin: 0;
    }

    .main-container {
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media print {
    * {
        background: #fff;
        color: #000
    }

    .add-shift-icon {
        display: none;
    }

    nav {
        display: none
    }
}

