/* ============================================================
   Practice Space Booking – Brand Styles
   Primary: #94266C  |  Black: #000000  |  White: #FFFFFF
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
.psb-wrap {
    --psb-primary:       #94266C;
    --psb-primary-dark:  #741f56;
    --psb-primary-light: #f9eef5;
    --psb-primary-muted: rgba(148, 38, 108, 0.12);
    --psb-black:         #000000;
    --psb-white:         #ffffff;
    --psb-gray-100:      #f5f5f5;
    --psb-gray-200:      #e8e8e8;
    --psb-gray-400:      #a0a0a0;
    --psb-gray-600:      #666666;
    --psb-gray-800:      #222222;
    --psb-error:         #c0392b;
    --psb-success:       #1a7a4a;
    --psb-radius:        10px;
    --psb-radius-sm:     6px;
    --psb-radius-pill:   999px;

    max-width: 720px;
    margin: 0 auto;
    padding: 24px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--psb-black);
    background: var(--psb-white);
}

/* ── Progress Bar ──────────────────────────────────────────── */
.psb-progress {
    display: flex;
    gap: 4px;
    margin-bottom: 36px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.psb-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 60px;
    font-size: 11px;
    color: var(--psb-gray-400);
    text-align: center;
    letter-spacing: 0.02em;
}

.psb-progress-step span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--psb-gray-200);
    color: var(--psb-gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 13px;
    transition: all 0.25s;
    border: 2px solid transparent;
}

.psb-progress-step.active span,
.psb-progress-step.done span {
    background: var(--psb-primary);
    color: var(--psb-white);
    border-color: var(--psb-primary);
}

.psb-progress-step.active {
    color: var(--psb-primary);
    font-weight: 700;
}

.psb-progress-step.done {
    color: var(--psb-gray-400);
}

/* ── Step headings ─────────────────────────────────────────── */
.psb-step h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--psb-black);
    letter-spacing: -0.02em;
}

.psb-subtitle {
    color: var(--psb-gray-600);
    margin: 0 0 24px;
    font-size: 15px;
}

/* ── Form elements ─────────────────────────────────────────── */
.psb-form-group {
    margin-bottom: 18px;
}

.psb-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--psb-gray-800);
}

.psb-form-group input[type="text"],
.psb-form-group input[type="email"],
.psb-form-group input[type="tel"],
.psb-form-group input[type="date"],
.psb-form-group select,
.psb-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius-sm);
    font-size: 15px;
    color: var(--psb-black);
    background: var(--psb-white);
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.psb-form-group input:focus,
.psb-form-group select:focus,
.psb-form-group textarea:focus {
    outline: none;
    border-color: var(--psb-primary);
    box-shadow: 0 0 0 3px var(--psb-primary-muted);
}

.psb-required { color: var(--psb-primary); }

.psb-checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    color: var(--psb-gray-800);
}

.psb-checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: var(--psb-primary);
    flex-shrink: 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.psb-nav-row {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 28px;
}

.psb-btn {
    padding: 12px 26px;
    border-radius: var(--psb-radius-pill);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
    letter-spacing: 0.01em;
    font-family: inherit;
    line-height: 1;
}

.psb-btn-primary {
    background: var(--psb-primary);
    color: var(--psb-white);
    border-color: var(--psb-primary);
}

.psb-btn-primary:hover {
    background: var(--psb-primary-dark);
    border-color: var(--psb-primary-dark);
}

.psb-btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.psb-btn-secondary {
    background: var(--psb-white);
    color: var(--psb-gray-800);
    border-color: var(--psb-gray-200);
}

.psb-btn-secondary:hover {
    border-color: var(--psb-gray-400);
    background: var(--psb-gray-100);
}

/* ── Alerts ────────────────────────────────────────────────── */
.psb-alert {
    padding: 12px 16px;
    border-radius: var(--psb-radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.psb-alert-error {
    background: #fdf0ef;
    border: 1px solid #f5c0bb;
    color: var(--psb-error);
}

.psb-loading {
    text-align: center;
    padding: 32px;
    color: var(--psb-gray-400);
}

/* ── Rooms Grid ────────────────────────────────────────────── */
.psb-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.psb-room-card {
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius);
    padding: 18px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--psb-white);
}

.psb-room-card:hover {
    border-color: var(--psb-primary);
    box-shadow: 0 2px 16px var(--psb-primary-muted);
}

.psb-room-card.selected {
    border-color: var(--psb-primary);
    border-width: 2px;
    background: var(--psb-primary-light);
}

.psb-room-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--psb-radius-sm);
    margin-bottom: 12px;
}

.psb-room-card h3 {
    font-size: 16px;
    margin: 0 0 6px;
    font-weight: 700;
    color: var(--psb-black);
}

.psb-room-desc {
    font-size: 13px;
    color: var(--psb-gray-600);
    margin: 0 0 10px;
    line-height: 1.5;
}

.psb-room-rates {
    font-size: 13px;
    color: var(--psb-gray-800);
    border-top: 1px solid var(--psb-gray-200);
    padding-top: 8px;
    margin-top: 4px;
}

.psb-room-rates span {
    display: block;
    line-height: 1.7;
}

/* ── Duration Tabs ─────────────────────────────────────────── */
.psb-duration-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.psb-tab {
    padding: 8px 20px;
    border-radius: var(--psb-radius-pill);
    border: 1.5px solid var(--psb-gray-200);
    background: var(--psb-white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--psb-gray-600);
    transition: all 0.2s;
    font-family: inherit;
}

.psb-tab.active,
.psb-tab:hover {
    border-color: var(--psb-primary);
    color: var(--psb-primary);
    background: var(--psb-primary-light);
}

.psb-help {
    color: var(--psb-gray-600);
    font-size: 13px;
    margin-bottom: 14px;
}

/* ── Time Slot Grid ────────────────────────────────────────── */
.psb-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.psb-slot {
    padding: 11px 10px;
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius-sm);
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--psb-gray-800);
    background: var(--psb-white);
    transition: all 0.2s;
    font-family: inherit;
}

.psb-slot:hover {
    border-color: var(--psb-primary);
    color: var(--psb-primary);
    background: var(--psb-primary-light);
}

.psb-slot.selected {
    border-color: var(--psb-primary);
    background: var(--psb-primary);
    color: var(--psb-white);
}

/* Multi-hour slots — standalone class, base styling matches .psb-slot */
.psb-multi-slot {
    padding: 11px 10px;
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius-sm);
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--psb-gray-800);
    background: var(--psb-white);
    transition: all 0.2s;
    font-family: inherit;
}

.psb-multi-slot:hover {
    border-color: var(--psb-primary);
    color: var(--psb-primary);
    background: var(--psb-primary-light);
}

.psb-multi-slot.selected {
    border-color: var(--psb-primary);
    background: var(--psb-primary);
    color: var(--psb-white);
    position: relative;
}

.psb-multi-slot.selected::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    border-radius: inherit;
}

.psb-slot.booked,
.psb-slot.psb-slot-booked {
    background: var(--psb-gray-100);
    color: var(--psb-gray-400);
    cursor: not-allowed;
    border-color: var(--psb-gray-200);
    font-weight: 400;
}

.psb-slot.psb-slot-booked small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--psb-gray-400);
}

/* ── Time Range (multi-hour) ───────────────────────────────── */
.psb-time-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.psb-price-preview {
    font-weight: 700;
    color: var(--psb-primary);
    font-size: 16px;
    margin-top: 8px;
}

/* ── Block options (half/full day) ─────────────────────────── */
.psb-block-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.psb-block-btn {
    padding: 14px 22px;
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius);
    cursor: pointer;
    background: var(--psb-white);
    font-size: 14px;
    font-weight: 600;
    color: var(--psb-gray-800);
    transition: all 0.2s;
    font-family: inherit;
    line-height: 1.6;
}

.psb-block-btn:hover {
    border-color: var(--psb-primary);
    color: var(--psb-primary);
    background: var(--psb-primary-light);
}

.psb-block-btn.selected {
    border-color: var(--psb-primary);
    background: var(--psb-primary);
    color: var(--psb-white);
}

.psb-block-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ── Liability Box ─────────────────────────────────────────── */
.psb-liability-box {
    background: var(--psb-gray-100);
    border: 1px solid var(--psb-gray-200);
    border-radius: var(--psb-radius-sm);
    padding: 20px 24px;
    max-height: 300px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--psb-gray-800);
}

.psb-liability-box h3 {
    margin-top: 0;
    color: var(--psb-black);
}

/* ── Payment summary ───────────────────────────────────────── */
.psb-booking-summary {
    background: var(--psb-primary-light);
    border: 1px solid rgba(148, 38, 108, 0.2);
    border-radius: var(--psb-radius-sm);
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--psb-gray-800);
}

.psb-booking-summary .psb-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--psb-primary);
}

.psb-card-element {
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius-sm);
    padding: 12px 14px;
    background: var(--psb-white);
}

.psb-card-errors {
    color: var(--psb-error);
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
}

/* ── Confirmation ──────────────────────────────────────────── */
.psb-confirmation {
    text-align: center;
    padding: 32px 16px;
}

.psb-confirm-icon {
    width: 72px;
    height: 72px;
    background: var(--psb-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--psb-white);
    margin: 0 auto 20px;
}

.psb-viewing-icon {
    background: var(--psb-primary-dark);
}

.psb-confirmation h2 {
    font-size: 26px;
    margin: 0 0 12px;
    color: var(--psb-black);
}

.psb-confirm-details {
    background: var(--psb-gray-100);
    border: 1px solid var(--psb-gray-200);
    border-radius: var(--psb-radius-sm);
    padding: 16px 20px;
    margin: 16px auto;
    max-width: 400px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
}

.psb-confirm-note {
    font-size: 13px;
    color: var(--psb-gray-600);
    margin-top: 12px;
}

/* ── E-Signature block ─────────────────────────────────────── */
.psb-esig-block {
    margin: 20px 0 8px;
    border: 1px solid var(--psb-gray-200);
    border-radius: var(--psb-radius);
    padding: 20px;
    background: var(--psb-gray-100);
}

.psb-esig-preview {
    min-height: 64px;
    border-bottom: 2px solid var(--psb-black);
    margin: 4px 0 10px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 6px;
    font-family: 'Dancing Script', 'Brush Script MT', 'Segoe Script', cursive;
    font-size: 32px;
    color: var(--psb-black);
    letter-spacing: 1px;
    word-break: break-word;
    transition: color 0.2s;
}

.psb-esig-preview.has-name {
    color: var(--psb-primary);
}

.psb-esig-preview:empty::before {
    content: 'Your signature will appear here';
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    color: var(--psb-gray-400);
    font-style: italic;
}

.psb-esig-disclaimer {
    font-size: 12px;
    color: var(--psb-gray-600);
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid var(--psb-gray-200);
    padding-top: 10px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 480px) {
    .psb-time-range { grid-template-columns: 1fr; }
    .psb-duration-tabs { gap: 6px; }
    .psb-tab { padding: 7px 14px; font-size: 13px; }
    .psb-progress-step { font-size: 10px; min-width: 48px; }
    .psb-btn { padding: 11px 20px; font-size: 14px; }
}

/* ── Plans Grid ────────────────────────────────────────────── */
.psb-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}

.psb-plan-card {
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius);
    padding: 22px 18px 18px;
    background: var(--psb-white);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.psb-plan-card:hover {
    border-color: var(--psb-primary);
    box-shadow: 0 4px 20px var(--psb-primary-muted);
}

.psb-plan-featured {
    border-color: var(--psb-primary);
    border-width: 2px;
}

.psb-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--psb-primary);
    color: var(--psb-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--psb-radius-pill);
    white-space: nowrap;
}

.psb-plan-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--psb-black);
}

.psb-plan-tagline {
    font-size: 13px;
    color: var(--psb-gray-600);
    margin: 0 0 14px;
    line-height: 1.5;
    flex: 1;
}

.psb-plan-price {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 2px;
}

.psb-price-currency {
    font-size: 18px;
    font-weight: 700;
    margin-top: 6px;
    color: var(--psb-black);
}

.psb-price-amount {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--psb-black);
}

.psb-plan-period {
    font-size: 13px;
    color: var(--psb-gray-600);
    margin-bottom: 16px;
}

.psb-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.psb-plan-features li {
    font-size: 13px;
    color: var(--psb-gray-800);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.psb-plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--psb-primary);
    font-weight: 700;
}

.psb-plan-addon-note {
    font-size: 12px;
    color: var(--psb-gray-600);
    margin: 0 0 14px;
    font-style: italic;
}

.psb-btn-plan {
    width: 100%;
    margin-top: auto;
    padding: 11px;
    border-radius: var(--psb-radius-pill);
    border: 2px solid var(--psb-primary);
    background: var(--psb-white);
    color: var(--psb-primary);
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    font-family: inherit;
}

.psb-btn-plan:hover,
.psb-btn-plan-featured {
    background: var(--psb-primary);
    color: var(--psb-white);
}

.psb-plan-total {
    font-size: 16px;
    font-weight: 700;
    color: var(--psb-primary);
    margin: 16px 0 0;
}

/* ── Add-on card ───────────────────────────────────────────── */
.psb-addon-card {
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius-sm);
    padding: 16px;
    background: var(--psb-gray-100);
    margin-bottom: 12px;
}

.psb-addon-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.psb-addon-label input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--psb-primary);
    width: 18px;
    height: 18px;
}

.psb-addon-price {
    font-size: 13px;
    color: var(--psb-primary);
    font-weight: 700;
    margin-left: 6px;
}

/* ── Hybrid session options ────────────────────────────────── */
.psb-session-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.psb-session-opt {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius-sm);
    padding: 14px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.psb-session-opt:has(input:checked) {
    border-color: var(--psb-primary);
    background: var(--psb-primary-light);
}

.psb-session-opt input[type="radio"] {
    margin-top: 2px;
    accent-color: var(--psb-primary);
    flex-shrink: 0;
}

.psb-session-opt div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.psb-session-opt strong { font-size: 15px; }
.psb-session-opt span  { font-size: 13px; color: var(--psb-gray-600); }

/* ── Day grid (Premium Stability) ─────────────────────────── */
.psb-day-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.psb-day-btn {
    padding: 10px 18px;
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius-pill);
    background: var(--psb-white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--psb-gray-800);
    transition: all 0.2s;
    font-family: inherit;
}

.psb-day-btn:hover { border-color: var(--psb-primary); color: var(--psb-primary); background: var(--psb-primary-light); }
.psb-day-btn.selected { background: var(--psb-primary); color: var(--psb-white); border-color: var(--psb-primary); }

/* ── Room gallery ──────────────────────────────────────────── */
.psb-room-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.psb-room-gallery-card {
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--psb-white);
}

.psb-room-gallery-card:hover {
    border-color: var(--psb-primary);
    box-shadow: 0 2px 16px var(--psb-primary-muted);
}

.psb-room-gallery-card.psb-room-selected {
    border-color: var(--psb-primary);
    border-width: 2px;
    background: var(--psb-primary-light);
}

.psb-room-gallery-imgs {
    display: flex;
    overflow-x: auto;
    gap: 4px;
    max-height: 160px;
}

.psb-room-gallery-imgs img {
    height: 160px;
    width: auto;
    flex-shrink: 0;
    object-fit: cover;
}

.psb-room-gallery-placeholder {
    height: 120px;
    background: var(--psb-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.psb-room-gallery-info {
    padding: 12px 14px 4px;
}

.psb-room-gallery-info h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
}

.psb-room-gallery-info p {
    margin: 0;
    font-size: 13px;
    color: var(--psb-gray-600);
    line-height: 1.4;
}

/* ── Info/success boxes ────────────────────────────────────── */
.psb-info-box {
    background: var(--psb-gray-100);
    border: 1px solid var(--psb-gray-200);
    border-radius: var(--psb-radius-sm);
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.psb-success-note {
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: var(--psb-radius-sm);
    padding: 10px 14px;
    color: #166534;
    font-weight: 600;
    font-size: 14px;
}

/* ── Flow selection cards (Step 0) ────────────────────────── */
.psb-flow-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 8px 0 24px;
}

.psb-flow-card {
    border: 1.5px solid var(--psb-gray-200);
    border-radius: var(--psb-radius);
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.psb-flow-card:hover {
    border-color: var(--psb-primary);
    box-shadow: 0 4px 20px var(--psb-primary-muted);
}

.psb-flow-icon {
    font-size: 40px;
    line-height: 1;
}

.psb-flow-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--psb-black);
}

.psb-flow-card p {
    font-size: 14px;
    color: var(--psb-gray-600);
    margin: 0;
    line-height: 1.5;
}

.psb-flow-btn {
    margin-top: 8px;
    width: 100%;
}

@media (max-width: 480px) {
    .psb-flow-cards { grid-template-columns: 1fr; }
}

/* ── Theme override — ensure plugin buttons use brand colors ─ */
#psb-booking-wrap .psb-btn,
#psb-booking-wrap .psb-btn:visited {
    display: inline-block;
    text-decoration: none;
    box-shadow: none;
    outline: none;
}

#psb-booking-wrap .psb-btn-primary,
#psb-booking-wrap .psb-btn-primary:hover,
#psb-booking-wrap .psb-btn-plan-featured,
#psb-booking-wrap .psb-btn-plan-featured:hover {
    background-color: #94266C !important;
    color: #ffffff !important;
    border-color: #94266C !important;
}

#psb-booking-wrap .psb-btn-secondary,
#psb-booking-wrap .psb-btn-plan {
    background-color: #ffffff !important;
    color: #94266C !important;
    border-color: #94266C !important;
}

#psb-booking-wrap .psb-btn-secondary:hover,
#psb-booking-wrap .psb-btn-plan:hover {
    background-color: #94266C !important;
    color: #ffffff !important;
}

#psb-booking-wrap .psb-flow-card .psb-btn-primary {
    background-color: #94266C !important;
    color: #ffffff !important;
}

#psb-booking-wrap .psb-flow-card .psb-btn-secondary {
    background-color: transparent !important;
    color: #94266C !important;
    border: 2px solid #94266C !important;
}
