.genloader-container {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(248, 250, 252, 0.84);
    z-index: 9999;
}

.card-border {
    border: 1px solid #d7e7e5;
}

label {
    color: #146c68;
    font-weight: 600;
}

.btn-alpha {
    background: linear-gradient(180deg, #2bb8ad, #146c68);
    color: #ffffff;
    border: 0;
}

.btn-alpha:hover {
    background: linear-gradient(180deg, #249f96, #0f5b57);
    color: #ffffff;
}

table thead th {
    color: #146c68 !important;
    background-color: #f3faf9 !important;
    font-weight: 700;
}

/* Status Badges */

.badge-available {
    background-color: #e7f6f2;
    color: #14746f;
    padding: 6px 12px;
    border-radius: 50rem;
    font-weight: 700;
    font-size: 13px;
}

.badge-booked {
    background-color: #f6e7dc;
    color: #b65f3f;
    padding: 6px 12px;
    border-radius: 50rem;
    font-weight: 700;
    font-size: 13px;
}

.badge-passed {
    background-color: #fc86414b;
    color: #f11212;
    padding: 6px 12px;
    border-radius: 50rem;
    font-weight: 700;
    font-size: 13px;
}

/* Action Buttons */

.btn-edit {
    background: linear-gradient(180deg, #6fb7a8, #3f8f82);
    color: #ffffff;
    border: 0;
}

.btn-edit:hover {
    background: linear-gradient(180deg, #5fa99a, #357d72);
    color: #ffffff;
}

.btn-delete {
    background: linear-gradient(180deg, #d9896f, #bd6245);
    color: #ffffff;
    border: 0;
}

.btn-delete:hover {
    background: linear-gradient(180deg, #ca765b, #a9533b);
    color: #ffffff;
}

.text-alpha{
    color: #bd6245;
    font-weight: 600    ;
}

.btn-beta {
    background: linear-gradient(180deg, #5fa99a, #357d72);
    color: #ffffff;
    border: 0;
}

/* ---- loader ---- */

#pageLoaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.418);
    z-index: 9999;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

#pageLoaderOverlay.d-none {
    display: none !important;
}

.loader {
    width: 80px;        /* change size here */
    aspect-ratio: 1;
    border-radius: 50%;
    border: 10px solid #e0e0e0;      /* track color */
    border-right-color: #0f5c7a;     /* spinning color */
    animation: l2 1s infinite linear;
}

@keyframes l2 {
    to { transform: rotate(1turn); }
}
