/* your styles go here */
.cursor-pointer {
    cursor: pointer;
}

.reject-button {
    font-size: 1rem;
    color: tomato;
    margin-left: 0.5rem;
}

.reject-button:hover {
    color: tomato;
}

.rejected {
    background: #ffd2ca !important;
}

.rejection-message {
    background: tomato;
    padding: 1rem;
    border-radius: 0.5rem;
    color: white;
}

.booking-tabs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
    max-width: 250px;
    flex-wrap: wrap;
}

.booking-tabs > a {
    background: lightgray;
    padding: 0 7px;
    border-radius: 3px;
    color: black;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.booking-tabs > .with-fluid {
    background: aquamarine;
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: center;

    small {
        color: darkorchid;
        letter-spacing: 1px;
    }
}

.booking-tabs > .with-coupon {
    background: burlywood;
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: center;

    small {
        color: darkorchid;
        letter-spacing: 1px;
    }
}

.booking-tab-legend {
    background: lightgray;
    padding: 2px 5px;
    border-radius: 0.3rem;
}

.data-slug {
    min-width: 90px;
}

.slug-fees {
    font-size: 0.6rem;
    display: flex;
    flex-direction: column;
    opacity: 0.8;
}

.fee-data {
    display: flex;
    flex-direction: row;
    min-width: 115px;
    justify-content: center;
}

.sticky-table {
    width: 100%;
    border-collapse: collapse;

    thead {
        position: sticky;
        top: 0;
        background-color: white; /* or any background color you prefer */
        z-index: 1; /* Ensures the thead stays above other elements */
    }

    th, td {
    }

    tbody {
        display: block;
        max-height: 800px; /* Set this to the max height you want for your tbody */
        overflow-y: auto;
    }

    thead, tbody tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
}