.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.bs-dropdown-100vh {
    max-height: 100vh;
    overflow-y: auto;
}

.not-preferred-staff-member {
    display: none;
}

.show-all-staff-members .not-preferred-staff-member {
    display: revert;
}

.loader {
  width: auto;
  height: 200px;
  margin: auto;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

.loading-overlay {
    position: fixed; /* Position relative to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* White background with opacity to block/dim the background */
    display: flex; /* Use flexbox to center the loader content */
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensure it is on top of all other elements */
    display: none;
}


@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}
