/* ── Variables ────────────────────────────────────────────────────────────── */
.publicMeetingBody {
    --bg: #0b0904;
    --surface: #141210;
    --surface2: #1a1714;
    --border: rgba(255, 255, 255, .08);
    --text: #e8e2d8;
    --muted: #9a9088;
    --gold: #ceaa49;
    --good: #4caf7d;
    --bad: #e85a4a;
    --radius: 10px;
}

/* ── Page shell ───────────────────────────────────────────────────────────── */
.publicMeetingBody {
    background: var(--bg);
    color: var(--text);
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.publicMeetingBody .meetingShell {
    max-width: 980px;
    margin: 36px auto;
    padding: 0 20px 60px;
    width: 100%;
}

.publicMeetingBody .meetingPage {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(320px, 1fr);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}

/* ── Left dark panel ──────────────────────────────────────────────────────── */
.publicMeetingBody .meetingPanelDark {
    background: var(--surface);
    color: var(--text);
    padding: 36px 28px;
    border-right: 1px solid var(--border);
}

.publicMeetingBody .meetingLogoWrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.publicMeetingBody .meetingLogoCircle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(206, 170, 73, .1);
    border: 1px solid rgba(206, 170, 73, .25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.publicMeetingBody .meetingLogoCircle img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.publicMeetingBody .meetingMonth {
    font: 600 11px/1.2 "Montserrat", sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 10px;
}

.publicMeetingBody .meetingTitle {
    font: 700 22px/1.2 "Montserrat", sans-serif;
    color: var(--text);
    text-align: center;
    margin: 0 0 8px;
}

.publicMeetingBody .meetingSub {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    margin: 0 0 18px;
    line-height: 1.5;
}

.publicMeetingBody .inlineMeta {
    display: none;
}

.publicMeetingBody .metaPill {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font: 600 11px/1.4 "Montserrat", sans-serif;
    letter-spacing: .02em;
    background: rgba(206, 170, 73, .1);
    border: 1px solid rgba(206, 170, 73, .2);
    color: var(--gold);
}

/* ── Booking summary card (left panel) ────────────────────────────────────── */
.publicMeetingBody .bookingSummaryCard {
    margin-top: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    font: 400 12px/1.4 "Montserrat", sans-serif;
}

.publicMeetingBody .bookingSummaryRow {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 8px 14px;
    border-bottom: 1px solid var(--border);
}

.publicMeetingBody .bookingSummaryRow:last-child {
    border-bottom: none;
}

.publicMeetingBody .bookingSummaryLabel {
    color: #b8b0a4;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 11px;
    font-weight: 500;
}

.publicMeetingBody .bookingSummaryValue {
    color: var(--text);
    font-weight: 600;
    text-align: right;
}

/* ── Right panel ──────────────────────────────────────────────────────────── */
.publicMeetingBody .meetingPanelLight {
    background: var(--surface2);
    color: var(--text);
    padding: 32px 28px;
}

.publicMeetingBody .meetingLightTitle {
    font: 700 16px/1.2 "Montserrat", sans-serif;
    color: var(--text);
    margin: 0 0 22px;
    letter-spacing: .02em;
}

.publicMeetingBody .meetingSection {
    margin-top: 24px;
    margin-bottom: 24px;
}

.publicMeetingBody .meetingSectionTitle {
    font: 700 12px/1.2 "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    margin: 0 0 10px;
}

.publicMeetingBody .tinyMuted {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

/* ── Calendar (custom widget) ─────────────────────────────────────────────── */
.publicMeetingBody .calendarWidget {
    width: 100%;
    user-select: none;
}

.publicMeetingBody .calNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.publicMeetingBody .calMonthLabel {
    font: 600 13px/1.2 "Montserrat", sans-serif;
    color: var(--text);
}

.publicMeetingBody .calNavBtn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, color .2s;
}

.publicMeetingBody .calNavBtn:disabled {
    opacity: .3;
    cursor: not-allowed;
}

.publicMeetingBody .calNavBtn:not(:disabled):hover {
    border-color: var(--gold);
    color: var(--gold);
}

.publicMeetingBody .calGrid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.publicMeetingBody .calDayHead {
    text-align: center;
    font: 700 10px/1.2 "Montserrat", sans-serif;
    color: #b8b0a4;
    padding: 4px 0;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.publicMeetingBody .calCell {
    text-align: center;
    padding: 7px 4px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1;
}

.publicMeetingBody .calEmpty {
    background: none;
}

.publicMeetingBody .calDisabled {
    color: var(--muted);
    opacity: .35;
    background: none;
    cursor: not-allowed;
}

.publicMeetingBody .calAvail {
    background: rgba(206, 170, 73, .08);
    color: var(--gold);
    cursor: pointer;
    border: 1px solid rgba(206, 170, 73, .18);
    font-weight: 600;
    width: 100%;
    transition: background .15s;
}

.publicMeetingBody .calAvail:hover {
    background: rgba(206, 170, 73, .18);
}

.publicMeetingBody .calSelected {
    background: var(--gold);
    color: #0b0904;
    font-weight: 700;
    border: none;
    width: 100%;
    cursor: pointer;
}

/* ── Time slot buttons ────────────────────────────────────────────────────── */
.publicMeetingBody .slotList {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 280px;
    overflow: auto;
    padding-right: 4px;
}

.publicMeetingBody .slotBtn {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .03);
    color: var(--text);
    padding: 12px 14px;
    border-radius: 7px;
    text-align: center;
    cursor: pointer;
    font: 600 14px/1.2 "Montserrat", sans-serif;
    transition: border-color .2s, background .2s;
}

.publicMeetingBody .slotBtn:hover {
    border-color: rgba(206, 170, 73, .3);
    background: rgba(206, 170, 73, .05);
}

.publicMeetingBody .slotBtn.active {
    border-color: var(--gold);
    box-shadow: inset 0 0 0 1px var(--gold);
    background: rgba(206, 170, 73, .1);
    color: var(--gold);
}

/* ── Booking form ─────────────────────────────────────────────────────────── */
.publicMeetingBody .meetingField {
    margin-bottom: 12px;
}

.publicMeetingBody .meetingField label {
    display: block;
    font: 700 11px/1.2 "Montserrat", sans-serif;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.publicMeetingBody .meetingField input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    font: 400 14px/1.4 "Montserrat", sans-serif;
    box-sizing: border-box;
    outline: none;
    transition: border-color .2s;
}

.publicMeetingBody .meetingField input::placeholder {
    color: var(--muted);
}

.publicMeetingBody .meetingField input:focus {
    border-color: rgba(206, 170, 73, .4);
    box-shadow: 0 0 0 3px rgba(206, 170, 73, .08);
}

/* ── Consent checkbox ─────────────────────────────────────────────────────── */
.publicMeetingBody .checkRow,
.publicMeetingBody .checkRow label {
    color: var(--text);
    font-size: 13px;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.publicMeetingBody .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 7px;
    font: 600 13px/1.2 "Montserrat", sans-serif;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .2s;
}

.publicMeetingBody .btn.primary {
    background: var(--gold);
    color: #0b0904;
}

.publicMeetingBody .btn.primary:hover:not(:disabled) {
    background: #d9b85a;
}

.publicMeetingBody .btn.primary:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.publicMeetingBody .btn.ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.publicMeetingBody .btn.ghost:hover {
    border-color: rgba(255, 255, 255, .2);
}

.publicMeetingBody .bookingActions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 16px;
}

/* ── Notices / errors ─────────────────────────────────────────────────────── */
.publicMeetingBody .meetingNotice {
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(232, 90, 74, .08);
    border: 1px solid rgba(232, 90, 74, .2);
    font-size: 13px;
    color: #e89a8a;
}

.publicMeetingBody .meetingNoticeLoading {
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(76, 175, 125, .08);
    border: 1px solid rgba(76, 175, 125, .2);
    font-size: 13px;
    color: var(--good);
}

.publicMeetingBody .meetingEmptyState {
    padding: 48px 32px;
    text-align: center;
}

/* ── Booking confirmed state ──────────────────────────────────────────────── */
.publicMeetingBody .bookingSuccess {
    padding: 24px;
    border-radius: 12px;
    background: rgba(76, 175, 125, .06);
    border: 1px solid rgba(76, 175, 125, .2);
    text-align: center;
    margin-top: 16px;
}

.publicMeetingBody .bookingConfirmedIcon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--good);
    color: var(--good);
    display: grid;
    place-items: center;
    font: 700 22px/1 "Montserrat", sans-serif;
    margin: 0 auto 14px;
}

.publicMeetingBody .bookingSummaryLine {
    font-size: 15px;
    color: var(--text);
}

/* ── Misc utility ─────────────────────────────────────────────────────────── */
.publicMeetingBody .top6 {
    margin-top: 6px;
}

.publicMeetingBody .top12 {
    margin-top: 12px;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 760px) {
    .publicMeetingBody .meetingPage {
        grid-template-columns: 1fr;
    }

    .publicMeetingBody .meetingPanelDark {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 28px 20px;
    }

    .publicMeetingBody .meetingPanelLight {
        padding: 24px 20px;
    }

    .publicMeetingBody .meetingShell {
        margin: 16px auto;
        padding: 0 12px 40px;
    }
}
.reqMark {
    color: #f87171;
    font-weight: 700;
}
