/*
|--------------------------------------------------------------------------
| Royal Servicess LLC — Onyx Elegance Application Layer
|--------------------------------------------------------------------------
|
| Structural application shell and dashboard components.
| Loaded after onyx.css.
|
*/


/*
|--------------------------------------------------------------------------
| Refine foundation
|--------------------------------------------------------------------------
*/

body {
    overflow-x: hidden;
}

.page-container {
    width: min(
        1240px,
        calc(100% - 48px)
    );

    margin:
        38px
        auto
        80px;
}

/*
 * Large structural panels should not lift simply because the
 * pointer crosses them.
 */
.card:hover {
    transform: none;
}

.card:hover::before {
    left: -135%;
}

.card {
    overflow: visible;
}


/*
|--------------------------------------------------------------------------
| Application header
|--------------------------------------------------------------------------
*/

.app-header {
    position: sticky;
    z-index: 100;
    top: 0;

    border-bottom:
        1px solid rgba(212, 175, 55, 0.13);

    background:
        rgba(9, 9, 10, 0.84);

    box-shadow:
        0 18px 54px rgba(0, 0, 0, 0.24);

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.app-header__inner {
    display: grid;

    width: min(
        1240px,
        calc(100% - 48px)
    );

    min-height: 78px;

    margin: 0 auto;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    gap: 28px;

    align-items: center;
}

.app-brand {
    display: inline-flex;

    color: var(--silver-100);

    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;

    letter-spacing: 0.055em;

    align-items: center;

    text-decoration: none;

    white-space: nowrap;
}

.app-brand:hover {
    color: #ffffff;
}

.app-brand__mark {
    position: relative;

    width: 30px;
    height: 30px;

    margin-right: 12px;

    border:
        1px solid rgba(212, 175, 55, 0.54);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 40% 35%,
            rgba(244, 228, 167, 0.26),
            rgba(212, 175, 55, 0.06) 48%,
            rgba(0, 0, 0, 0.18) 72%
        );

    box-shadow:
        inset 0 0 16px rgba(212, 175, 55, 0.07),
        0 0 22px rgba(212, 175, 55, 0.09);
}

.app-brand__mark::before,
.app-brand__mark::after {
    position: absolute;

    content: "";
}

.app-brand__mark::before {
    top: 7px;
    left: 14px;

    width: 1px;
    height: 14px;

    background:
        linear-gradient(
            var(--gold-100),
            var(--gold-400)
        );
}

.app-brand__mark::after {
    top: 14px;
    left: 7px;

    width: 14px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--gold-400),
            var(--gold-100)
        );
}

.app-nav {
    display: flex;

    min-width: 0;

    gap: 5px;

    align-items: center;
    justify-content: center;
}

.app-nav__link {
    display: inline-flex;

    min-height: 40px;

    border:
        1px solid transparent;

    border-radius: 9px;

    color: var(--silver-400);

    font-size: 0.84rem;
    font-weight: 650;

    letter-spacing: 0.025em;

    align-items: center;

    padding:
        8px
        12px;

    text-decoration: none;

    transition:
        color 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.app-nav__link:hover {
    border-color:
        rgba(212, 175, 55, 0.15);

    background:
        rgba(212, 175, 55, 0.045);

    color: var(--silver-100);
}

.app-nav__link.is-active {
    border-color:
        rgba(212, 175, 55, 0.26);

    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.12),
            rgba(255, 255, 255, 0.025)
        );

    color: var(--gold-100);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.app-header__actions {
    display: flex;

    gap: 12px;

    align-items: center;
    justify-content: flex-end;
}

.app-context {
    display: flex;

    min-width: 0;

    flex-direction: column;

    align-items: flex-end;
}

.app-context__label {
    color: var(--silver-500);

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.12em;

    line-height: 1.2;

    text-transform: uppercase;
}

.app-context__value {
    max-width: 180px;

    overflow: hidden;

    color: var(--silver-300);

    font-size: 0.77rem;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.app-logout {
    min-height: 38px;

    border:
        1px solid rgba(192, 192, 192, 0.15);

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.025);

    color: var(--silver-300);

    cursor: pointer;

    font: inherit;
    font-size: 0.77rem;
    font-weight: 650;

    padding:
        7px
        12px;

    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.app-logout:hover {
    border-color:
        rgba(212, 175, 55, 0.28);

    background:
        rgba(212, 175, 55, 0.055);

    color: var(--gold-100);
}


/*
|--------------------------------------------------------------------------
| Page headings
|--------------------------------------------------------------------------
*/

.page-heading {
    display: flex;

    margin-bottom: 30px;

    gap: 28px;

    align-items: flex-end;
    justify-content: space-between;
}

.page-heading__content {
    min-width: 0;
}

.page-eyebrow {
    display: flex;

    margin-bottom: 10px;

    color: var(--gold-200);

    font-size: 0.70rem;
    font-weight: 750;

    letter-spacing: 0.18em;

    align-items: center;

    text-transform: uppercase;
}

.page-eyebrow::before {
    width: 27px;
    height: 1px;

    margin-right: 10px;

    background:
        linear-gradient(
            90deg,
            var(--gold-300),
            transparent
        );

    content: "";
}

.page-heading h1 {
    margin-bottom: 8px;

    font-size:
        clamp(
            2.15rem,
            5vw,
            3.45rem
        );

    letter-spacing: -0.035em;
}

.page-heading__subtitle {
    max-width: 720px;

    margin: 0;

    color: var(--silver-400);

    font-size: 1rem;
}

.page-heading__side {
    flex: 0 0 auto;
}


/*
|--------------------------------------------------------------------------
| Status pills
|--------------------------------------------------------------------------
*/

.status-pill {
    display: inline-flex;

    min-height: 30px;

    border:
        1px solid rgba(192, 192, 192, 0.14);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.03);

    color: var(--silver-300);

    font-size: 0.68rem;
    font-weight: 800;

    letter-spacing: 0.09em;

    align-items: center;

    padding:
        6px
        10px;

    text-transform: uppercase;
}

.status-pill::before {
    width: 6px;
    height: 6px;

    margin-right: 7px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 10px currentColor;

    content: "";
}

.status-pill--gold {
    border-color:
        rgba(212, 175, 55, 0.29);

    background:
        rgba(212, 175, 55, 0.075);

    color: var(--gold-200);
}

.status-pill--success {
    border-color:
        rgba(125, 195, 145, 0.24);

    background:
        rgba(64, 132, 83, 0.10);

    color: #9ad7aa;
}

.status-pill--warning {
    border-color:
        rgba(223, 174, 78, 0.28);

    background:
        rgba(185, 124, 32, 0.09);

    color: #e6c276;
}

.status-pill--muted {
    color: var(--silver-400);
}


/*
|--------------------------------------------------------------------------
| Glass panels
|--------------------------------------------------------------------------
*/

.panel {
    position: relative;

    border:
        1px solid rgba(192, 192, 192, 0.115);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.043),
            rgba(255, 255, 255, 0.014)
        ),
        rgba(20, 20, 22, 0.70);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.032),
        0 18px 52px rgba(0, 0, 0, 0.23);

    padding: 24px;

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.panel--hero {
    border-color:
        rgba(212, 175, 55, 0.19);

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(212, 175, 55, 0.09),
            transparent 18rem
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012)
        ),
        rgba(17, 17, 19, 0.78);
}

.panel__header {
    display: flex;

    margin-bottom: 22px;

    gap: 18px;

    align-items: flex-start;
    justify-content: space-between;
}

.panel__label {
    margin-bottom: 5px;

    color: var(--silver-500);

    font-size: 0.68rem;
    font-weight: 750;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}

.panel__title {
    margin-bottom: 0;

    color: var(--silver-100);

    font-family: var(--font-display);
    font-size: 1.42rem;
}

.panel__copy {
    margin-bottom: 0;

    color: var(--silver-400);
}


/*
|--------------------------------------------------------------------------
| Customer dashboard
|--------------------------------------------------------------------------
*/

.dashboard-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(300px, 0.75fr);

    gap: 22px;
}

.dashboard-stack {
    display: grid;

    gap: 22px;
}

.account-hero {
    display: grid;

    min-height: 270px;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 26px;

    align-items: stretch;
}

.account-hero__main {
    display: flex;

    flex-direction: column;

    justify-content: space-between;
}

.account-hero__welcome {
    max-width: 650px;
}

.account-hero__name {
    display: block;

    margin-bottom: 10px;

    color: #ffffff;

    font-family: var(--font-display);
    font-size:
        clamp(
            2rem,
            4.4vw,
            3.3rem
        );

    line-height: 1.06;
}

.account-hero__copy {
    max-width: 610px;

    margin-bottom: 0;

    color: var(--silver-400);
}

.account-hero__ornament {
    position: relative;

    width: 128px;

    overflow: hidden;

    border:
        1px solid rgba(212, 175, 55, 0.14);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.075),
            rgba(255, 255, 255, 0.012)
        );
}

.account-hero__ornament::before {
    position: absolute;

    width: 170px;
    height: 170px;

    top: 46px;
    left: 32px;

    border:
        1px solid rgba(212, 175, 55, 0.24);

    border-radius: 50%;

    box-shadow:
        0 0 70px rgba(212, 175, 55, 0.08);

    content: "";
}

.account-hero__ornament::after {
    position: absolute;

    width: 96px;
    height: 1px;

    top: 50%;
    left: 16px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(244, 228, 167, 0.52),
            transparent
        );

    content: "";

    transform: rotate(-38deg);
}

.account-hero__footer {
    display: flex;

    margin-top: 30px;

    gap: 12px;

    flex-wrap: wrap;
    align-items: center;
}

.account-meta {
    display: grid;

    margin-top: 24px;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.account-meta__item {
    border:
        1px solid rgba(192, 192, 192, 0.09);

    border-radius: 12px;

    background:
        rgba(0, 0, 0, 0.13);

    padding:
        14px
        15px;
}

.account-meta__label {
    display: block;

    margin-bottom: 4px;

    color: var(--silver-500);

    font-size: 0.67rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.account-meta__value {
    display: block;

    overflow-wrap: anywhere;

    color: var(--silver-200);

    font-size: 0.9rem;
}

.quick-actions {
    display: grid;

    gap: 11px;
}

.action-tile {
    position: relative;

    display: grid;

    overflow: hidden;

    min-height: 92px;

    border:
        1px solid rgba(192, 192, 192, 0.10);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.022);

    color: inherit;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 16px;

    align-items: center;

    padding:
        16px
        17px;

    text-decoration: none;

    transition:
        transform 400ms ease-out,
        border-color 400ms ease-out,
        background 400ms ease-out,
        box-shadow 400ms ease-out;
}

.action-tile::before {
    position: absolute;

    width: 46%;
    height: 180%;

    top: -40%;
    left: -70%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.10),
            transparent
        );

    content: "";

    pointer-events: none;

    transform: rotate(18deg);

    transition:
        left 650ms ease-out;
}

.action-tile:hover {
    border-color:
        rgba(212, 175, 55, 0.27);

    background:
        rgba(212, 175, 55, 0.038);

    color: inherit;

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.19),
        0 0 34px rgba(212, 175, 55, 0.045);

    transform:
        translateY(-4px)
        scale(1.01);
}

.action-tile:hover::before {
    left: 135%;
}

.action-tile__title {
    display: block;

    margin-bottom: 3px;

    color: var(--silver-100);

    font-family: var(--font-display);
    font-size: 1.04rem;
}

.action-tile__copy {
    display: block;

    color: var(--silver-500);

    font-size: 0.79rem;
    line-height: 1.45;
}

.action-tile__arrow {
    display: flex;

    width: 34px;
    height: 34px;

    border:
        1px solid rgba(212, 175, 55, 0.18);

    border-radius: 50%;

    color: var(--gold-200);

    align-items: center;
    justify-content: center;

    font-size: 1rem;
}


/*
|--------------------------------------------------------------------------
| Informational checklist
|--------------------------------------------------------------------------
*/

.requirement-list {
    display: grid;

    gap: 0;
}

.requirement-item {
    display: grid;

    min-height: 58px;

    border-bottom:
        1px solid rgba(192, 192, 192, 0.075);

    grid-template-columns:
        26px
        minmax(0, 1fr);

    gap: 12px;

    align-items: start;

    padding:
        12px
        0;
}

.requirement-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.requirement-item__mark {
    display: flex;

    width: 22px;
    height: 22px;

    margin-top: 1px;

    border:
        1px solid rgba(212, 175, 55, 0.23);

    border-radius: 50%;

    background:
        rgba(212, 175, 55, 0.05);

    color: var(--gold-200);

    align-items: center;
    justify-content: center;

    font-size: 0.68rem;
}

.requirement-item__title {
    display: block;

    color: var(--silver-200);

    font-size: 0.87rem;
    font-weight: 650;
}

.requirement-item__copy {
    display: block;

    margin-top: 2px;

    color: var(--silver-500);

    font-size: 0.77rem;
    line-height: 1.45;
}


/*
|--------------------------------------------------------------------------
| Staff pickup operations
|--------------------------------------------------------------------------
*/

.ops-summary {
    display: grid;

    margin-bottom: 24px;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}

.ops-summary__item {
    border:
        1px solid rgba(192, 192, 192, 0.09);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.02);

    padding:
        16px;
}

.ops-summary__value {
    display: block;

    margin-bottom: 4px;

    color: var(--silver-100);

    font-family: var(--font-display);
    font-size: 1.55rem;
}

.ops-summary__label {
    color: var(--silver-500);

    font-size: 0.70rem;
    font-weight: 700;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}

.booking-list {
    display: grid;

    gap: 16px;
}

.booking-card {
    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(192, 192, 192, 0.11);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        ),
        rgba(18, 18, 20, 0.73);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 16px 42px rgba(0, 0, 0, 0.20);

    padding: 22px;

    transition:
        transform 400ms ease-out,
        border-color 400ms ease-out,
        box-shadow 400ms ease-out;
}

.booking-card::before {
    position: absolute;

    width: 40%;
    height: 180%;

    top: -35%;
    left: -65%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.075),
            transparent
        );

    content: "";

    pointer-events: none;

    transform: rotate(18deg);

    transition:
        left 700ms ease-out;
}

.booking-card:hover {
    border-color:
        rgba(212, 175, 55, 0.25);

    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.27),
        0 0 32px rgba(212, 175, 55, 0.04);

    transform:
        translateY(-4px);
}

.booking-card:hover::before {
    left: 130%;
}

.booking-card__header {
    display: flex;

    margin-bottom: 20px;

    gap: 18px;

    align-items: flex-start;
    justify-content: space-between;
}

.booking-card__eyebrow {
    margin-bottom: 5px;

    color: var(--gold-200);

    font-size: 0.67rem;
    font-weight: 750;

    letter-spacing: 0.11em;

    text-transform: uppercase;
}

.booking-card__title {
    margin-bottom: 4px;

    font-size:
        clamp(
            1.35rem,
            2.5vw,
            1.75rem
        );
}

.booking-card__id {
    margin: 0;

    color: var(--silver-500);

    font-size: 0.72rem;

    overflow-wrap: anywhere;
}

.booking-card__body {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 24px;

    align-items: end;
}

.booking-meta {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;
}

.booking-meta__item {
    min-width: 0;

    border-left:
        1px solid rgba(212, 175, 55, 0.13);

    padding-left: 12px;
}

.booking-meta__label {
    display: block;

    margin-bottom: 4px;

    color: var(--silver-500);

    font-size: 0.64rem;
    font-weight: 700;

    letter-spacing: 0.065em;

    text-transform: uppercase;
}

.booking-meta__value {
    display: block;

    color: var(--silver-200);

    font-size: 0.82rem;

    overflow-wrap: anywhere;
}

.booking-card__note {
    max-width: 770px;

    margin:
        18px
        0
        0;

    color: var(--silver-500);

    font-size: 0.81rem;
}

.booking-card__actions {
    display: flex;

    flex-direction: column;

    gap: 8px;

    align-items: stretch;
}

.button--secondary {
    border:
        1px solid rgba(212, 175, 55, 0.25);

    background:
        rgba(212, 175, 55, 0.065);

    box-shadow:
        none;

    color: var(--gold-100);
}

.button--secondary:hover {
    background:
        rgba(212, 175, 55, 0.11);

    color: #ffffff;

    box-shadow:
        0 10px 28px rgba(212, 175, 55, 0.08);
}

.button--secondary::before {
    display: none;
}

.button--ghost {
    border:
        1px solid rgba(192, 192, 192, 0.13);

    background:
        rgba(255, 255, 255, 0.025);

    box-shadow: none;

    color: var(--silver-300);
}

.button--ghost:hover {
    border-color:
        rgba(212, 175, 55, 0.22);

    background:
        rgba(212, 175, 55, 0.045);

    color: var(--gold-100);

    box-shadow: none;
}

.button--ghost::before {
    display: none;
}


/*
|--------------------------------------------------------------------------
| Empty state
|--------------------------------------------------------------------------
*/

.empty-state {
    border:
        1px dashed rgba(192, 192, 192, 0.15);

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.018);

    padding:
        46px
        28px;

    text-align: center;
}

.empty-state__mark {
    display: flex;

    width: 52px;
    height: 52px;

    margin:
        0
        auto
        18px;

    border:
        1px solid rgba(212, 175, 55, 0.2);

    border-radius: 50%;

    background:
        rgba(212, 175, 55, 0.04);

    color: var(--gold-200);

    align-items: center;
    justify-content: center;

    font-family: var(--font-display);
    font-size: 1.4rem;
}

.empty-state h2 {
    margin-bottom: 8px;
}

.empty-state p {
    max-width: 520px;

    margin:
        0
        auto;

    color: var(--silver-500);
}


/*
|--------------------------------------------------------------------------
| Pagination
|--------------------------------------------------------------------------
*/

.pagination-actions {
    display: flex;

    margin-top: 24px;

    gap: 10px;

    align-items: center;
    justify-content: flex-end;
}


/*
|--------------------------------------------------------------------------
| Session notices
|--------------------------------------------------------------------------
*/

.session-notice {
    margin-bottom: 24px;

    border:
        1px solid rgba(125, 195, 145, 0.22);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(58, 130, 79, 0.09),
            rgba(255, 255, 255, 0.018)
        );

    color: #cce8d3;

    padding:
        14px
        16px;
}


/*
|--------------------------------------------------------------------------
| Responsive shell
|--------------------------------------------------------------------------
*/

@media (max-width: 1080px) {
    .app-header__inner {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .app-header__actions {
        display: none;
    }

    .app-nav {
        justify-content: flex-end;
    }

    .booking-meta {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .page-container {
        width: calc(100% - 30px);
    }

    .app-header__inner {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;
        gap: 10px;

        padding:
            14px
            0;
    }

    .app-brand {
        justify-self: center;
    }

    .app-nav {
        width: 100%;

        overflow-x: auto;

        justify-content: flex-start;

        padding-bottom: 2px;

        scrollbar-width: none;
    }

    .app-nav::-webkit-scrollbar {
        display: none;
    }

    .app-nav__link {
        flex: 0 0 auto;
    }

    .page-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .account-hero {
        grid-template-columns: 1fr;
    }

    .account-hero__ornament {
        display: none;
    }

    .booking-card__body {
        grid-template-columns: 1fr;
    }

    .booking-card__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ops-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-container {
        margin-top: 28px;
    }

    .app-header__inner {
        width: calc(100% - 24px);
    }

    .app-brand {
        font-size: 0.98rem;
    }

    .app-brand__mark {
        width: 27px;
        height: 27px;
    }

    .app-brand__mark::before {
        top: 6px;
        left: 13px;

        height: 13px;
    }

    .app-brand__mark::after {
        top: 13px;
        left: 6px;

        width: 13px;
    }

    .page-heading {
        margin-bottom: 22px;
    }

    .page-heading h1 {
        font-size: 2.25rem;
    }

    .panel,
    .booking-card {
        border-radius: 16px;

        padding: 18px;
    }

    .account-meta {
        grid-template-columns: 1fr;
    }

    .booking-card__header {
        flex-direction: column;
    }

    .booking-meta {
        grid-template-columns: 1fr;
    }

    .booking-meta__item {
        border-left: 0;

        border-top:
            1px solid rgba(212, 175, 55, 0.11);

        padding:
            10px
            0
            0;
    }

    .booking-card__actions {
        display: grid;

        grid-template-columns: 1fr;
    }

    .booking-card__actions .button {
        width: 100%;
    }

    .pagination-actions {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/*
|--------------------------------------------------------------------------
| Motion accessibility
|--------------------------------------------------------------------------
*/

@media (prefers-reduced-motion: reduce) {
    .action-tile:hover,
    .booking-card:hover {
        transform: none;
    }

    .action-tile::before,
    .booking-card::before {
        display: none;
    }
}
