.tb-booking-page {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0;
    background: var(--background);
}

.tb-booking-card {
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
}

.tb-booking-page .section-title {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
}

.tb-section {
    margin-top: 26px;
}

.tb-section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px;
    color: var(--deep-blue);
}

.tb-input-group {
    /* border: 1px solid var(--divider); */
    border-radius: 10px;
    padding: 50px 30px;
    background: white;
    display: inline-flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

.tb-info-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.tb-info-row2 {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.tb-info-row2 .tb-input {
    height: 50px;
    border-radius: 5px !important;
}

.tb-info-label {
    color: var(--secondary-text);
    font-weight: 400;
    margin-bottom: 0;
}

.tb-info-value {
    font-weight: 700;
}

.tb-info-value a {
    text-decoration: none;
    color: var(--text-title);
    transition-duration: 0.3s;
}

.tb-info-value a:hover {
    color: var(--deep-blue);
    text-decoration: none;
}

.tb-label {
    display: block;
    font-size: 13px;
    color: var(--secondary-text);
    margin: 14px 0 8px;
}

.tb-input,
.tb-textarea {
    width: 100%;
    border: 1px solid var(--divider);
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 1.5;
}

.tb-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-right: 64px;
}

.input-with-icon .tb-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--deep-blue);
}

/* Hide default calendar icon on date input */
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    display: none;
}

input[type="date"] {
    -moz-appearance: textfield;
}

/* Make custom icon clickable */
.input-with-icon {
    position: relative;
}

.input-with-icon .tb-icon {
    cursor: pointer;
    pointer-events: auto;
}

/* Select dropdown styling */
.select-with-icon {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-with-icon select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    cursor: pointer;
    background-color: white;
}

.select-with-icon .dropdown-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.3s ease;
    color: var(--deep-blue);
    width: 24px;
    height: 24px;
}

/* Rotate icon when select is focused/open */
.select-with-icon select:focus+.dropdown-icon {
    transform: translateY(-50%) rotate(180deg);
}

.coupon-input-group {
    position: relative;
    width: 100%;
}

.coupon-input-group button {
    font-size: 16px;
    padding: 10px 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 560px) {
    .tb-row-2 {
        grid-template-columns: 1fr;
    }

    .tb-booking-card {
        padding: 24px;
    }
}

.tb-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: var(--text-title);
}

.tb-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
}

.tb-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    max-width: 100%;
    height: 48px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid var(--divider);
    background: #fff;
    color: var(--text-title);
}

.tb-btn-primary {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
    color: #fff;
    box-shadow: 0 10px 18px rgba(45, 93, 149, .25);
}

.tb-btn-secondary {
    background: #fff;
}

.tb-alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin: 0 0 10px;
}

.tb-alert-error {
    background: var(--background);
    border: 1px solid var(--divider);
    color: #9b1c1c;
}

.tb-alert-success {
    background: var(--background);
    border: 1px solid var(--divider);
    color: var(--sage);
}

/* Options Section Styles */
.tb-options-section {
    margin: 10px 0;
}

.tb-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 4px;
}

.tb-option-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.tb-option-item:hover {
    opacity: 0.8;
}

.tb-option-item input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--deep-blue);
}

.tb-option-label {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-title);
    cursor: pointer;
    user-select: none;
}

.tb-option-price {
    font-weight: 700;
    color: var(--deep-blue);
    margin-left: 4px;
}