﻿.topBar {
    height: 95px;
    top: 0;
    position: fixed;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: linear-gradient( 90deg,#0f3f64 50%, #0e769d 100%);
    z-index: 2;
}

.topStrip {
    height: 7px;
    top: 95px;
    position: fixed;
    right: 0;
    left: 0;
    background: linear-gradient( 90deg,#29c9e5 5%, #2bd494 100%);
    z-index: 1;
}

.topCentre {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
    padding: 6px 24px;
    background: #BDECF6;
    border-radius: 10px;
    color: #0f3f64;
    border: 1px solid #0f3f64;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    text-align: center;
}

.topCentre h1 {
    font-size: 22px;
    margin: 0px;
    margin-bottom: 3px;
    padding: 2px 10px
}

.topCentre h2 {
    font-size: 16px;
    margin: 0px;
    margin-bottom: 3px;
    padding: 2px 10px
}

.textboxSearch {
    width: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 8px 12px;
    border: 1px solid #878787;
    box-sizing: border-box;
    background-color: white;
    font-size: 16px;
    color: #0f3f64;
    float: left;
    width: 300px;
    box-shadow: 0 8px 24px hsla(210, 8%, 62%, .2);
}

.textboxSearch:focus {
    outline: none !important;
    border: 2px solid #9A9A9A !important;
}

.tableHolder {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
    width: 90%;
    margin-left: 5%;
    margin-top: 125px;
    display: flow-root
}

.tableHolder .statusItem {
    border-radius: 10px;
    border: 0px;
    background-color: lightgrey;
    padding: 0.5rem;
    text-align: center;
    display: none;
}

.tableHolder .statusItem.locked {
    background-color: #ff000033;
    color: darkred;
    display: block;
}

.tableHolder .statusItem.excVal,
.tableHolder .statusItem.failure {
    background-color: #ff000033;
    color: darkred;
    display: block;
}

.tableHolder .statusItem.incVal,
.tableHolder .statusItem.success {
    background-color: #00ff0033;
    color: darkgreen;
    display: block;
}

.tableHolder .user-form-field .statusItem {
    display: inline-block;
    padding: 0.5rem;
    width: 100px;
}

.tableHolder.caseListScreen {
    margin-top: 0px;
    border-top-left-radius: 0px;
}

.tableActions {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-self: flex-start;
}

.tableActions .filler {
    flex-grow: 1;
}

.tableActions form {
    width: auto;
}

.tableNoResultsNotice {
    color: #0f3f64;
}

td.tableRowActions {
    height: 70px;
}

.actionButton {
    float: left;
    margin-left: 10px;
    background-color: #0e769d;
    padding: 8px 16px;
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: 0px;
    margin-bottom: 20px
}

.actionButton:hover {
    background-color: #0a5774;
    cursor: pointer;
    color: white;
}

.actionButton:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.tableButton {
    background-color: #0e769d;
    padding: 8px 16px;
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 0px;
}

.tableHB-admin .tableButton {
    display: block
}

.tableButton:hover {
    background-color: #0a5774;
    cursor: pointer;
    color: white !important;
    text-decoration: none !important
}

.tableHB, .tableHB-admin {
    width: 100%;
    border: none;
    color: #00213d;
    clear: both;
    font-weight: 400;
}

.tableHeader {
    background-color: #f2f2f2 !important;
    border-bottom: 1px solid rgb(224, 224, 224);
    font-weight: 500;
    font-size: 15px
}

.tableHeader td:first-child {
    border-top-left-radius: 10px;
}

.tableHeader td:last-child {
    border-top-right-radius: 10px;
}

.tableHeader td {
    padding: 18px
}

.tableHeader th:first-child {
    border-top-left-radius: 10px;
}

.tableHeader th:last-child {
    border-top-right-radius: 10px;
}

.tableHeader th {
    padding: 18px;
    font-weight: 500;
}

.tableHB tbody td, .tableHB-admin tr td {
    padding: 14px;
    font-size: 13.75px
}

.tableHB tbody:nth-child(odd) td {
    background-color: #fff !important;
    border-bottom: 1px solid rgb(224, 224, 224);
}

.tableHB tbody:nth-child(even) td {
    background-color: #fafafa !important;
    border-bottom: 1px solid rgb(224, 224, 224)
}

.tableHB-admin tr:nth-child(odd) td {
    background-color: #fff !important;
    border-bottom: 1px solid rgb(224, 224, 224);
}

.tableHB-admin tr:nth-child(even) td {
    background-color: #fafafa !important;
    border-bottom: 1px solid rgb(224, 224, 224)
}

.tableHB tbody tr:hover td {
    background-color: #eaf9fc !important;
    cursor: pointer
}

.tableHB-admin tr:hover td {
    background-color: #eaf9fc !important;
    cursor: pointer
}

#paginationSection {
    float: right;
    margin-top: 20px;
    clear: both
}

.pagination-cases {
    border: 1px solid #e0e0e0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    background: white;
    padding: 6px 11px;
    color: #00213d;
    font-weight: 600
}

    .pagination-cases:last-child {
        border-right: 2px solid #e0e0e0;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .pagination-cases:first-child {
        border-left: 2px solid #e0e0e0;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
    }

    .pagination-cases:hover {
        background: #eaf9fc;
        color: #00213d;
        border-color: #e0e0e0;
    }

.pag-selected {
    background-color: #0e769d;
    border: 2px solid #0e769d;
    color: white;
}

    .pag-selected:hover {
        background-color: #0e769d;
        border: 2px solid #0e769d;
        color: white;
    }

.navLogo {
    width: 140px;
    float: left;
    margin-left: 5%;
    filter: brightness(0) invert(1);
    position: absolute;
}