:root {
    --black: #101010;
    --charcoal: #171717;
    --red: #d71920;
    --deep-red: #8f1016;
    --green: #70bd20;
    --dark-green: #176b36;
    --yellow: #ffd21a;
    --maroon: #8a1538;
    --white: #ffffff;
    --off-white: #f7f7f5;
    --gray-50: #fafafa;
    --gray-100: #f1f2f3;
    --gray-200: #e4e6e8;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --danger: #b42318;
    --shadow: 0 12px 32px rgba(16,16,16,.12);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--charcoal);
    background: var(--off-white);
    line-height: 1.55;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(14px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: -.02em; }
.brand img { width: 56px; height: 56px; object-fit: cover; border-radius: 14px; border: 2px solid var(--black); }
.brand span { font-size: 1.05rem; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { padding: 10px 13px; text-decoration: none; border-radius: 999px; font-weight: 750; color: var(--gray-700); }
.main-nav a:hover, .main-nav a.active { background: var(--black); color: var(--white); }
.nav-toggle { display: none; border: 0; background: var(--black); color: white; width: 42px; height: 42px; border-radius: 12px; font-size: 1.25rem; }

.today-availability {
    background: linear-gradient(90deg, #111, #1c1c1c);
    border-bottom: 3px solid var(--yellow);
    color: var(--white);
}
.today-availability-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding-block: 14px;
}
.today-availability-title { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.live-dot { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(112,189,32,.17); }
.today-availability-title strong { display: block; font-size: .92rem; letter-spacing: .07em; text-transform: uppercase; }
.today-availability-title span:not(.live-dot) { display: block; margin-top: 2px; color: #bbb; font-size: .78rem; }
.today-slot-cards { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px; }
.today-slot-card { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 12px; background: #282828; border: 1px solid #3a3a3a; border-radius: 12px; }
.today-slot-card > span { overflow: hidden; color: #d5d5d5; font-size: .8rem; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
.today-slot-card strong { color: var(--green); font-size: 1.18rem; line-height: 1; white-space: nowrap; }
.today-slot-card strong small { color: var(--white); font-size: .67rem; font-weight: 750; }
.today-slot-card.low strong { color: var(--yellow); }
.today-slot-card.sold strong { color: #ff777b; }
.today-slot-card.closed strong { color: #b9bec5; }
.today-availability-button { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 14px; background: var(--yellow); color: var(--black); border-radius: 10px; font-size: .85rem; font-weight: 900; text-decoration: none; white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease; }
.today-availability-button:hover { box-shadow: 0 8px 20px rgba(0,0,0,.2); transform: translateY(-1px); }

.hero { position: relative; overflow: hidden; background: var(--black); color: var(--white); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(112,189,32,.24), transparent 35%), radial-gradient(circle at 18% 90%, rgba(215,25,32,.25), transparent 35%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; min-height: 620px; align-items: center; gap: 46px; padding-block: 70px; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 8px 12px; border-radius: 999px; font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); line-height: .96; margin: 18px 0; letter-spacing: -.06em; max-width: 900px; }
.hero h1 span { color: var(--yellow); }
.hero-copy { font-size: clamp(1rem, 2vw, 1.28rem); color: #e7e7e7; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-card { background: var(--white); color: var(--black); padding: 22px; border-radius: 26px; box-shadow: 0 20px 60px rgba(0,0,0,.32); transform: rotate(1.5deg); }
.hero-card img { border-radius: 18px; display: block; }
.hero-card .price-strip { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 16px; padding: 14px 16px; background: var(--yellow); border-radius: 14px; font-weight: 900; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 12px; padding: 13px 18px; text-decoration: none; font-weight: 900; min-height: 48px; transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.14); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-red { background: var(--red); color: var(--white); }
.btn-green { background: var(--green); color: #0c2200; }
.btn-light { background: var(--white); color: var(--black); border: 1px solid var(--gray-200); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-sm { min-height: 38px; padding: 8px 12px; border-radius: 10px; font-size: .9rem; }

.section { padding-block: 72px; }
.section-sm { padding-block: 40px; }
.section-title { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.045em; line-height: 1.05; }
.section-lead { color: var(--gray-500); max-width: 760px; margin: 0 0 30px; font-size: 1.08rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; box-shadow: 0 6px 18px rgba(16,16,16,.05); }
.card h2, .card h3 { margin-top: 0; }
.feature-card { position: relative; overflow: hidden; }
.feature-card .icon { width: 48px; height: 48px; display: grid; place-items: center; background: var(--black); color: white; border-radius: 14px; font-size: 1.35rem; margin-bottom: 18px; }
.stat { background: var(--black); color: white; border-radius: 18px; padding: 24px; }
.stat strong { display: block; color: var(--yellow); font-size: 2rem; line-height: 1.1; }
.muted { color: var(--gray-500); }
.small { font-size: .9rem; }

.schedule-list { display: grid; gap: 10px; }
.schedule-row { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
.schedule-row:last-child { border-bottom: 0; }
.schedule-row strong { min-width: 120px; }

.form-card { max-width: 900px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; }
input, select, textarea {
    width: 100%;
    border: 1px solid #cfd3d7;
    border-radius: 12px;
    padding: 12px 13px;
    background: white;
    color: var(--charcoal);
    min-height: 48px;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(255,210,26,.35); border-color: var(--black); }
textarea { min-height: 110px; resize: vertical; }
.help { color: var(--gray-500); font-size: .88rem; }
.required { color: var(--red); }

.booking-shell { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 24px; align-items: start; }
.booking-summary { position: sticky; top: 96px; }
.date-bar { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.court-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.court-card { background: white; border: 1px solid var(--gray-200); border-radius: 18px; overflow: hidden; }
.court-card h3 { margin: 0; background: var(--black); color: white; padding: 15px 18px; }
.slot-list { padding: 14px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.slot-btn { border: 1px solid var(--gray-200); background: white; border-radius: 12px; padding: 12px 8px; min-height: 56px; font-weight: 850; text-align: center; }
.slot-btn.available:hover { border-color: var(--green); background: #f3ffe6; }
.slot-btn.selected { background: var(--green); border-color: var(--dark-green); color: #0a2500; box-shadow: inset 0 0 0 2px rgba(0,0,0,.1); }
.slot-btn.booked, .slot-btn.held, .slot-btn.closed { cursor: not-allowed; color: var(--gray-500); background: var(--gray-100); text-decoration: line-through; }
.slot-status { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }
.summary-list { display: grid; gap: 10px; margin: 16px 0; }
.summary-item { padding: 11px; background: var(--gray-100); border-radius: 10px; font-weight: 750; }
.total-box { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding: 14px; background: var(--yellow); border-radius: 12px; margin-block: 14px; }
.total-box strong { font-size: 1.25rem; }
.step-panel { display: none; }
.step-panel.active { display: block; }
.payment-panel { background: #fff8d5; border: 2px solid var(--yellow); border-radius: 16px; padding: 18px; }
.payment-number { font-size: 1.7rem; font-weight: 950; letter-spacing: .03em; }

.alert { border-radius: 14px; padding: 14px 16px; margin-bottom: 18px; border: 1px solid transparent; }
.alert-success { background: #eafbdc; border-color: #a5df72; color: #225d0b; }
.alert-warning { background: #fff7d6; border-color: #f0ce38; color: #715400; }
.alert-danger { background: #fff0ee; border-color: #f0aaa2; color: #8f1b12; }
.badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 9px; font-size: .8rem; font-weight: 900; }
.badge-success { background: #dcf8c9; color: #235c0b; }
.badge-warning { background: #fff0b5; color: #6b5100; }
.badge-danger { background: #fee2df; color: #8a1a12; }
.badge-neutral { background: var(--gray-100); color: var(--gray-700); }

.table-wrap { overflow-x: auto; border: 1px solid var(--gray-200); border-radius: 14px; background: white; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 13px 14px; border-bottom: 1px solid var(--gray-200); text-align: left; white-space: nowrap; }
th { background: #f6f7f8; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); }
tr:last-child td { border-bottom: 0; }
.admin-toolbar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-row input, .filter-row select { width: auto; min-width: 160px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.metric-card { background: white; border-radius: 16px; border: 1px solid var(--gray-200); padding: 20px; }
.metric-card span { color: var(--gray-500); font-weight: 750; }
.metric-card strong { display: block; margin-top: 8px; font-size: 1.9rem; }

.booking-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.detail-list { margin: 0; display: grid; grid-template-columns: 140px 1fr; gap: 10px 16px; }
.detail-list dt { color: var(--gray-500); font-weight: 800; }
.detail-list dd { margin: 0; font-weight: 700; }
.actions-stack { display: flex; flex-wrap: wrap; gap: 10px; }
.logo-preview { width: 110px; height: 110px; object-fit: cover; border-radius: 20px; border: 2px solid var(--black); }
.empty-state { text-align: center; padding: 42px 20px; color: var(--gray-500); }

.confirmation-wrap { max-width: 780px; margin: 0 auto; text-align: center; }
.confirmation-icon { width: 86px; height: 86px; border-radius: 50%; background: var(--green); display: grid; place-items: center; margin: 0 auto 20px; font-size: 2.6rem; font-weight: 950; }
.reference-box { display: inline-block; background: var(--black); color: var(--yellow); border-radius: 14px; padding: 13px 18px; font-size: 1.4rem; font-weight: 950; letter-spacing: .05em; }

.site-footer { background: var(--black); color: white; padding-top: 44px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.site-footer p { color: #cfd0d2; margin: 8px 0; }
.site-footer a { color: var(--yellow); }
.footer-bottom { border-top: 1px solid #323232; padding-block: 20px; margin-top: 30px; color: #aeb0b4; font-size: .9rem; }

@media (max-width: 960px) {
    .today-availability-inner { grid-template-columns: 1fr auto; }
    .today-slot-cards { grid-column: 1 / -1; }
    .hero-grid { grid-template-columns: 1fr; min-height: auto; }
    .hero-card { max-width: 520px; transform: none; }
    .grid-4, .metric-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .booking-shell { grid-template-columns: 1fr; }
    .booking-summary { position: static; order: -1; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 22px, 1180px); }
    .today-availability-inner { display: block; padding-block: 12px; }
    .today-availability-title { margin-bottom: 10px; }
    .today-slot-cards { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; }
    .today-slot-card { padding: 10px; }
    .today-slot-card strong { font-size: 1.05rem; }
    .today-availability-button { display: flex; width: 100%; margin-top: 10px; }
    .nav-toggle { display: inline-grid; place-items: center; }
    .main-nav { display: none; position: absolute; left: 11px; right: 11px; top: 70px; padding: 12px; background: white; border: 1px solid var(--gray-200); border-radius: 16px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
    .main-nav.open { display: flex; }
    .main-nav a { border-radius: 10px; }
    .brand span { display: none; }
    .hero-grid { padding-block: 46px; gap: 30px; }
    .hero h1 { font-size: clamp(2.7rem, 15vw, 4.4rem); }
    .section { padding-block: 48px; }
    .grid-2, .grid-3, .grid-4, .form-grid, .court-grid, .booking-detail-grid, .footer-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .date-bar { align-items: stretch; flex-direction: column; }
    .slot-list { grid-template-columns: 1fr 1fr; }
    .metric-grid { grid-template-columns: 1fr 1fr; }
    .detail-list { grid-template-columns: 1fr; gap: 3px; }
    .detail-list dd { margin-bottom: 10px; }
    .filter-row { display: grid; grid-template-columns: 1fr; width: 100%; }
    .filter-row input, .filter-row select, .filter-row .btn { width: 100%; }
}

@media (max-width: 430px) {
    .slot-list, .metric-grid { grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
    .card { padding: 18px; }
}

/* RC1B — PWA installation prompt and creator credit */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
}
.creator-credit { color: #d5d6d8; }
.creator-credit strong { color: var(--white); }
.creator-credit a { color: var(--yellow); text-decoration: none; }
.creator-credit a:hover { text-decoration: underline; }

.pwa-install {
    position: fixed;
    z-index: 120;
    left: max(14px, env(safe-area-inset-left));
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: min(680px, calc(100% - 28px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(16,16,16,.98);
    color: var(--white);
    border: 1px solid #3b3b3b;
    border-radius: 18px;
    box-shadow: 0 22px 70px rgba(0,0,0,.38);
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.pwa-install[hidden] { display: none; }
.pwa-install.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.pwa-install-logo { width: 58px; height: 58px; object-fit: cover; border-radius: 13px; background: var(--white); }
.pwa-install-copy strong { display: block; font-size: 1rem; line-height: 1.25; }
.pwa-install-copy p { margin: 4px 0 0; color: #cfd0d2; font-size: .88rem; line-height: 1.35; }
.pwa-install-actions { display: flex; align-items: center; gap: 8px; }
.pwa-dismiss {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: #2e2e2e;
    color: var(--white);
    font-size: 1.45rem;
    line-height: 1;
}
.pwa-dismiss:hover { background: #444; }

@media (max-width: 620px) {
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .pwa-install {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 10px 12px;
        padding: 12px;
    }
    .pwa-install-logo { width: 50px; height: 50px; border-radius: 11px; }
    .pwa-install-actions { grid-column: 1 / -1; width: 100%; }
    .pwa-install-actions .btn { flex: 1; }
}

/* RC1C booking records and export controls */
.btn-outline-danger {
    background: #fff;
    color: var(--danger);
    border: 1px solid var(--danger);
}
.btn-outline-danger:hover { background: #fff1f2; }
.filter-date {
    display: grid;
    gap: 4px;
    margin: 0;
    color: var(--gray-600);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.filter-date input { color: var(--text); font-size: 1rem; font-weight: 400; text-transform: none; letter-spacing: normal; }
.report-note { margin: -6px 0 12px; }
@media (max-width: 720px) {
    .booking-filter-row .filter-date,
    .booking-filter-row .filter-date input { width: 100%; }
}

/* PROJECT PICKLE BOOKING V0.1.0-RC1F
   Versioned stylesheet used to bypass stale PWA caches after RC1E deployment. */


/* RC1F contact, admin-login and fixed booking-reference controls */
.main-nav .admin-login-link { border: 1px solid var(--black); color: var(--black); }
.main-nav .admin-login-link:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.reference-input-group { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: stretch; }
.reference-input-group > span { display: flex; align-items: center; padding: 0 12px; border: 1px solid var(--gray-200); border-right: 0; border-radius: 10px 0 0 10px; background: var(--gray-100); color: var(--black); font-weight: 900; }
.reference-input-group input { border-radius: 0 10px 10px 0; }
.contact-entry { display: grid; gap: 3px; padding: 12px 0; border-top: 1px solid var(--gray-200); }
.contact-entry:first-of-type { margin-top: 8px; }
.contact-entry a { width: fit-content; font-size: 1.05rem; font-weight: 800; }
@media (max-width: 720px) {
    .main-nav .admin-login-link { text-align: center; }
}

/* RC1G: live administrator booking monitor */
.nav-live-count {
    display: inline-flex;
    min-width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--black);
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
}
.admin-live-console {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1180;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: calc(100vw - 36px);
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(16,16,16,.97);
    box-shadow: 0 16px 42px rgba(0,0,0,.28);
    color: #fff;
}
.admin-live-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 185px;
}
.admin-live-summary > div {
    display: grid;
    gap: 2px;
}
.admin-live-summary strong {
    font-size: .88rem;
}
.admin-live-summary span:not(.admin-live-dot) {
    color: rgba(255,255,255,.72);
    font-size: .75rem;
}
.admin-live-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #9ca3af;
    box-shadow: 0 0 0 5px rgba(156,163,175,.14);
}
.admin-live-dot.online {
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(112,189,32,.18);
}
.admin-live-dot.error {
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(215,25,32,.17);
}
.admin-live-actions {
    display: flex;
    gap: 7px;
}
.admin-live-actions .btn {
    white-space: nowrap;
}
.admin-booking-toast {
    position: fixed;
    right: 18px;
    bottom: 96px;
    z-index: 1190;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 14px;
    width: min(440px, calc(100vw - 36px));
    padding: 15px;
    border: 2px solid var(--yellow);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(0,0,0,.25);
}
.admin-booking-toast > div {
    display: grid;
    gap: 3px;
    min-width: 0;
}
.admin-booking-toast strong {
    color: var(--black);
}
.admin-booking-toast span {
    overflow: hidden;
    color: var(--gray-700);
    font-size: .86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.admin-toast-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--black);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
}
.admin-new-row {
    animation: adminNewRow 2.4s ease-out;
}
@keyframes adminNewRow {
    0% { background: rgba(255,210,26,.55); }
    100% { background: transparent; }
}
@media (max-width: 720px) {
    .admin-live-console {
        right: 10px;
        bottom: 10px;
        left: 10px;
        justify-content: space-between;
        max-width: none;
        gap: 10px;
    }
    .admin-live-summary {
        min-width: 0;
    }
    .admin-live-actions .btn {
        padding: 9px 10px;
        font-size: .72rem;
    }
    .admin-booking-toast {
        right: 10px;
        bottom: 92px;
        left: 10px;
        width: auto;
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .admin-booking-toast .admin-toast-close {
        position: absolute;
        top: -10px;
        right: -4px;
        border: 1px solid var(--gray-200);
        background: #fff;
    }
}
