.booking-status-modal {
    position: fixed;
    inset: 0;
    background: rgba(20, 16, 12, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}

.booking-status-modal.is-visible {
    display: flex;
}

.booking-status-modal__content {
    background: #f8f1e6;
    color: #2f2a25;
    padding: 24px 28px;
    border-radius: 18px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.booking-status-modal__text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.booking-status-modal__button {
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    background: #a66f3a;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
