:root {
    --fair-color-orange--main: rgb(253, 179, 66);
    --fair-color-light-gray--main: rgb(234, 234, 234);
    --fair-color-gray--main: rgb(153, 153, 153);
    --fair-color-dark-gray--main: rgb(102, 102, 102);
    --fair-color-black: rgb(12, 8, 12);
    --fair-color-secondary--bright-yellow: rgb(253, 208, 142);
    --datatables-striped-color--dark: rgb(230, 230, 230);
    --datatables-striped-color--bright: rgb(255,255,255);
}

template {
    display: none;
}

.filter-body {
    height: 165px;
}

.filter {
    width: 70px;
    height: 35px;
    background-color: #FABE5D !important;
}


/* defines the look and feel of any button in this project */

button,
input[type="button"],
input[type="submit"] {
    background-color: #e9ecef;
    border-radius: 3px;
}

.fair-button {
    color: black;
    background-color: var(--fair-color-secondary--bright-yellow);
}

.fair-button:disabled {
    color: black;
    background-color: var(--fair-color-secondary--bright-yellow);
    opacity: 0.65;
}

/* fair-button parent element */
div:has( > button.fair-button:disabled) {
    cursor: not-allowed;
}

.fair-button:hover, .fair-button:active, .fair-button:focus {
    color: white;
    background-color: var(--fair-color-secondary--bright-yellow);
}

summary {
    color: unset;
}

summary:hover {
    color: #FDD08E;
}

.fair-background-color-primary {
    background-color: #FABE5D !important;
}

.fair-background-color-secondary {
    background-color: #FDD08E !important;
}

.fair-background-color-tertiary {
    background-color: #F29600 !important;
}

.fair-background-color-orange-3 {
    background-color: #FFE0BF !important;
}

.fair-color-primary {
    color: #FABE5D !important;
}

.fair-color-secondary {
    color: #FDD08E !important;
}

.fair-color-tertiary {
    color: #F29600 !important;
}

.btn-secondary {
    white-space: normal;
}

.color-black {
    color: black;
}

.color-gray {
    color: gray;
}

/* Trick */

body {
    display: flex;
    flex-direction: column;
    background-color: white;
    height: 100vh;
    margin: 0;
}


/* defining the color of links - basically item navbar-items / nav-item and fontawesome icons */

a:link {
    color: #4B4B4B
}

a:visited {
    color: #4B4B4B
}

a:active {
    color: #FDD08E;
}

a:hover {
    color: #FDD08E;
}


/* defining the color of bootstrap table pagination */

.pagination>li>a {
    background-color: white;
    color: #4B4B4B;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: #5a5a5a;
    background-color: #eee;
    border-color: #ddd;
}

.pagination>.active>a {
    color: black !important;
    background-color: #FDD08E !Important;
    border: solid 1px #4B4B4B !Important;
}

.pagination>.active>a:hover {
    background-color: #FDD08E !Important;
    border: solid 1px #4B4B4B;
}

.outline_top_bottom {
    box-shadow: 0 -1px 0 rgb(160, 156, 156), 0 1px 0 rgb(160, 156, 156);
}

.text-decoration-none a {
    text-decoration: none;
}

table.center {
    margin-left: auto;
    margin-right: auto;
}

table.tr-space {
    border-collapse: collapse;
    border-spacing: 0;
}

table.tr-space tr {
    border-bottom: 5px solid transparent;
}

table.tr-space tr td {
    margin-top: 1px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    vertical-align: top;
    white-space: pre-wrap;
}

.red {
    color: red !important;
}

.green {
    color: green !important;
}

.light-gray {
    background-color: #e9ecef;
}

.non-defined-width {
    width: unset !important;
}

.center_div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
}

.message_error {
    color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
}

.message_success {
    color: green;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
}

.text-bold {
    font-weight: bold;
}
.banded-lines :is(p:nth-child(odd), tr:nth-child(odd)) {
    background-color: #ececec;
}

body.cursor-busy,
.cursor-busy * {
    cursor: wait !important;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor--grab--important {
    cursor: grab !important;
}

.flex_item--center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
}

.flex_item--end {
    display: flex;
    align-items: end;
    justify-content: end;
}

.multiline {
    white-space: pre-wrap;
}

.hyphenate {
    word-break: break-word;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

table.table--space {
    border-collapse: collapse;
    border-spacing: 0;
}

table.table--space tr {
    border-bottom: 5px solid transparent;
}

table.table--space tr td {
    margin-top: 1px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    vertical-align: top;
}

tr.table__tr--red-border {
    border: 5px solid red;
}

.list--circle {
    list-style-type: circle;
}