html {
    font-size: 14px;
    font-family: -apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
    background-color: #f1f4f6;
}

body {
    margin-bottom: 60px;
    background-color: #f1f4f6;
}

.navbar {
    height: 50px;
    box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,.03), 0 0.9375rem 1.40625rem rgba(4,9,20,.03), 0 0.25rem 0.53125rem rgba(4,9,20,.05), 0 0.125rem 0.1875rem rgba(4,9,20,.03);
}

.icon-link.nav-link:hover {
    color: black;
    font-weight: 600;
}

    .icon-link.nav-link:hover .icon-container {
        border: 1px solid black;
    }

.page-header {
    height: 100px;
    background: rgba(255,255,255,.45);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header-title {
    font-size: 1.25rem;
    font-weight: 400;
}

.page-header-title-subheading {
    padding: 3px 0 0;
    font-size: .88rem;
    opacity: .6;
}

.card {
    box-shadow: 0 .46875rem 2.1875rem rgba(4,9,20,.03),0 .9375rem 1.40625rem rgba(4,9,20,.03),0 .25rem .53125rem rgba(4,9,20,.05),0 .125rem .1875rem rgba(4,9,20,.03);
    border-width: 0;
    transition: all .2s;
}

.card-header {
    font-size: 1.1rem;
    font-weight: 400;
    background-color: transparent;
}

.table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
    background-color: var(--bs-gray-100);
    border: 1px solid var(--bs-gray-500);
}

.no-border-input {
    border: none;
    background: none !important;
}

.footer-sticky-bottom {
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 2.5rem;
}

/*Fix for no space between ordering arrows in Datatables*/
.dt-column-order:before {
    margin-bottom: 2px;
}

/*Fix for bug where Bootstrap 5 row coloring would not work on datatables td elements*/
table tr.table-success td {
    background-color: #d1e7dd !important;
}

/*Fix for bug where Bootstrap 5 row coloring would not work on datatables td elements*/
table tr.table-warning td {
    background-color: #fff3cd !important;
}

/*Fix for bug where Bootstrap 5 row coloring would not work on datatables td elements*/
table tr.table-danger td {
    background-color: #f8d7da !important;
}

.selected-cell {
    border: 2px solid black !important;
}

/* Colors
*/

.text-color-needsapproval {
    color: rgb(137,105,200);
}

.bg-color-needsapproval {
    background-color: rgb(137,105,200);
}

.text-color-pending {
    color: rgb(238,158,82);
}

.bg-color-pending {
    background-color: rgb(238,158,82);
}

.text-color-completed {
    color: rgb(151,192,174);
}

.bg-color-completed {
    background-color: rgb(151,192,174);
}

.text-color-rejected {
    color: rgb(207,212,218);
}

.bg-color-rejected {
    background-color: rgb(207,212,218);
}

.text-color-admin {
    color: rgb(89,136,247);
}

.bg-color-admin {
    background-color: rgb(89,136,247);
}

.input-quantity {
    max-width: 80px;
}