.playground-reservation,
.playground-reservation * {
    box-sizing: border-box;
}

.playground-reservation {
    color: #111;
    max-width: 1480px;
    margin: 0 auto;
    padding: 12px 0 24px;
    font-size: 17px;
}
/* base.css 의 * { font-size:14px } 범용 규칙을 컨테이너 내부에서 상쇄.
   :where() 로 특이도 0 을 유지해 각 요소의 명시적 font-size 는 그대로 적용됨. */
.playground-reservation :where(*) { font-size: inherit; }

/* 예약 STEP 네비 (제목은 테마에서 "놀이터 예약" 고정) */
.playground-reservation .pg-resv-stepnav {
    margin: 0 auto 16px;
    padding: 0 8px;
    max-width: 900px;
}

.playground-reservation .pg-resv-stepnav__list {
    list-style: none;
    margin: 0;
    padding: 10px 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 6px 4px;
    background: linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.playground-reservation .pg-resv-stepnav__item {
    flex: 1 1 72px;
    min-width: 0;
    max-width: 140px;
    text-align: center;
}

.playground-reservation .pg-resv-stepnav__hit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    padding: 4px 2px;
}

.playground-reservation .pg-resv-stepnav__item.is-done .pg-resv-stepnav__hit {
    cursor: pointer;
    color: #2e7d32;
}

.playground-reservation .pg-resv-stepnav__item.is-done .pg-resv-stepnav__hit:hover .pg-resv-stepnav__text {
    text-decoration: underline;
}

.playground-reservation .pg-resv-stepnav__item.is-current .pg-resv-stepnav__hit {
    cursor: default;
    color: #c62828;
    font-weight: 700;
}

.playground-reservation .pg-resv-stepnav__item.is-future .pg-resv-stepnav__hit {
    cursor: default;
    color: #9e9e9e;
}

.playground-reservation .pg-resv-stepnav__circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    border: 2px solid #ddd;
    background: #fff;
    transition:
        border-color 0.15s,
        background 0.15s,
        color 0.15s;
}

.playground-reservation .pg-resv-stepnav__item.is-done .pg-resv-stepnav__circle {
    border-color: #66bb6a;
    background: #e8f5e9;
    color: #1b5e20;
}

.playground-reservation .pg-resv-stepnav__item.is-current .pg-resv-stepnav__circle {
    border-color: #e85a5a;
    background: #e85a5a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(232, 90, 90, 0.35);
}

.playground-reservation .pg-resv-stepnav__item.is-future .pg-resv-stepnav__circle {
    border-color: #e0e0e0;
    background: #fafafa;
    color: #bdbdbd;
}

.playground-reservation .pg-resv-stepnav__text {
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

@media (max-width: 520px) {
    .playground-reservation .pg-resv-stepnav__list {
        padding: 8px 6px;
        gap: 8px 6px;
    }

    .playground-reservation .pg-resv-stepnav__item {
        flex: 1 1 38%;
        max-width: none;
    }

    .playground-reservation .pg-resv-stepnav__text {
        font-size: 13px;
    }
}

.playground-reservation > .pg-resv-stepnav + .main-area {
    margin-top: 4px;
}

.playground-reservation.pg-resv-step > .pg-resv-stepnav {
    margin-bottom: 18px;
}

.playground-reservation .main-area {
    display: flex;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 24px;
}

.playground-reservation .card {
    background: #fff;
    border-radius: 32px;
    border: 1.5px dashed #999898;
    padding: 30px 32px 24px;
}

.playground-reservation .calendar-card {
    flex: 1;
    min-width: 0;
    height: 475px;
}

.playground-reservation .reservation-card {
    flex: 1;
    min-width: 0;
    height: 475px;
    display: flex;
    flex-direction: column;
}

.playground-reservation .card.reservation-card {
    background: #f6f6f6 !important;
}

.playground-reservation #reservationContent {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.playground-reservation .calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.playground-reservation .calendar-nav button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #9c9c9c;
    padding: 2px 6px;
    line-height: 1;
}

.playground-reservation .calendar-nav button i {
    display: block;
    line-height: 1;
    pointer-events: none;
}

.playground-reservation .calendar-nav button:hover {
    color: #111;
}

.playground-reservation .calendar-nav button:hover i {
    color: inherit;
}

.playground-reservation .calendar-nav .divider {
    color: #d4d4d4;
    font-size: 16px;
}

.playground-reservation .calendar-nav .month-label {
    font-size: 24px;
    font-weight: 700;
    min-width: 180px;
    text-align: center;
    letter-spacing: -0.015em;
}

.playground-reservation .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-top: 2px;
}

.playground-reservation .calendar-grid .day-header {
    font-size: 15px;
    font-weight: 700;
    padding: 8px 0 12px;
    color: #202020;
    border-top: 2px solid #3c3c3c;
    border-bottom: 2px solid #3c3c3c;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.playground-reservation .calendar-grid .day-header.sun {
    color: #e85a5a;
}

.playground-reservation .calendar-grid .day-header.sat {
    color: #5a8de8;
}

.playground-reservation .calendar-grid .day-cell {
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 18px;
    font-weight: 600;
    cursor: default;
    color: #d2d2d2;
    position: relative;
    padding: 4px 0;
}

.playground-reservation .calendar-grid .day-cell.current-month {
    color: #333;
}

.playground-reservation .calendar-grid .day-cell.current-month.unavailable {
    color: #bcbcbc;
    font-weight: 500;
}

/* 휴무일(정규휴무·단일휴무·기간휴무)이면서 공휴일 표시가 있는 날은 흐릿하게 */
.playground-reservation .calendar-grid .day-cell.current-month.unavailable.day-cell--public-holiday,
.playground-reservation .calendar-grid .day-cell.current-month.unavailable.day-cell--gcal-holiday {
    opacity: 0.45;
}

.playground-reservation .calendar-grid .day-cell.available {
    font-weight: 700;
    cursor: pointer;
}

.playground-reservation .calendar-grid .day-cell.available:hover .day-cell__num {
    background: #fff0f0;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 오늘은 기본 원형이 빨강 배경+흰 글씨인데, available 호버만 연분홍 배경이 오면 글자가 흰색이라 안 보임 */
.playground-reservation .calendar-grid .day-cell.today.available:hover .day-cell__num {
    background: #fff0f0;
    color: #e85a5a;
}

.playground-reservation .calendar-grid .day-cell.sun-day {
    color: #e85a5a;
}

.playground-reservation .calendar-grid .day-cell.sat-day {
    color: #5a8de8;
}

.playground-reservation .calendar-grid .day-cell:not(.current-month) {
    opacity: 0.4;
}

.playground-reservation .calendar-grid .day-cell.today .day-cell__num {
    background: #e85a5a;
    color: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.playground-reservation .calendar-grid .day-cell.selected:not(.today) .day-cell__num {
    background: #333;
    color: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.playground-reservation .calendar-grid .day-cell__num {
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
    line-height: 1;
}

.playground-reservation .calendar-grid .day-cell--public-holiday.available {
    box-shadow: inset 0 0 0 2px rgba(92, 107, 192, 0.55);
    border-radius: 8px;
}

/* Google 캘린더에서 자동 동기화된 공휴일: 빨간 글자, 테두리 없음 */
.playground-reservation .calendar-grid .day-cell--gcal-holiday {
    color: #e85a5a;
}
.playground-reservation .calendar-grid .day-cell--gcal-holiday.current-month:not(.today):not(.selected) .day-cell__num {
    color: #e85a5a;
}
.playground-reservation .calendar-grid .day-cell--gcal-holiday.available {
    box-shadow: none;
}
.playground-reservation .calendar-grid .day-cell--gcal-holiday .day-cell__badge {
    background: #e85a5a;
    color: #fff;
    max-width: calc(100% - 6px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
    padding: 3px 5px;
}
.playground-reservation .calendar-grid .day-cell--gcal-holiday.today .day-cell__badge,
.playground-reservation .calendar-grid .day-cell--gcal-holiday.selected:not(.today) .day-cell__badge {
    background: #fff;
    color: #e85a5a;
    outline: 1px solid #e85a5a;
}

/* 레이아웃에서 분리해 날짜 숫자는 다른 셀과 동일하게 세로 중앙 */
.playground-reservation .calendar-grid .day-cell__badge {
    position: absolute;
    top: 0px;
    right: 3px;
    z-index: 2;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    padding: 3px 5px;
    border-radius: 4px;
    background: #5c6bc0;
    color: #fff;
    white-space: nowrap;
    cursor: help;
}

/* 커스텀 배지 툴팁 (ellipsis 여부와 관계없이 모든 배지에 적용) */
.day-cell-tooltip {
    position: fixed;
    background: #2c2c2c;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    padding: 7px 11px;
    border-radius: 6px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.12s ease, transform 0.12s ease;
    white-space: nowrap;
    max-width: min(320px, calc(100vw - 16px));
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    letter-spacing: -0.01em;
}
.day-cell-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.day-cell-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    border: 5px solid transparent;
    pointer-events: none;
}
.day-cell-tooltip.is-above::after {
    bottom: -10px;
    margin-left: -5px;
    border-top-color: #2c2c2c;
}
.day-cell-tooltip.is-below::after {
    top: -10px;
    margin-left: -5px;
    border-bottom-color: #2c2c2c;
}

.playground-reservation .calendar-grid .day-cell.selected:not(.today) .day-cell__badge {
    background: #fff;
    color: #5c6bc0;
    outline: 1px solid #5c6bc0;
}

.playground-reservation .calendar-grid .day-cell.today .day-cell__badge {
    background: #fff;
    color: #5c6bc0;
}

.playground-reservation .resv-schedule-hint {
    font-size: 0.9rem;
    color: #c62828;
    margin: 8px 0 0;
    padding: 0;
    width: 100%;
}

.playground-reservation .schedule-empty-msg {
    text-align: center;
    color: #666;
    padding: 16px 8px;
}

.playground-reservation .reservation-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.playground-reservation .selected-date {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    min-width: 0;
}
.playground-reservation .selected-date__main {
    white-space: nowrap;
}
.playground-reservation .selected-date__tag {
    display: inline-flex;
    align-items: center;
    background: #fff0f0;
    color: #c0392b;
    font-size: 0.7em;
    font-weight: 700;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 999px;
    letter-spacing: 0;
    white-space: nowrap;
}

.playground-reservation .floor-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
}

.playground-reservation .floor-tab {
    padding: 7px 20px;
    min-width: 64px;
    text-align: center;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid var(--color-brand-red);;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.15s;
    user-select: none;
}

.playground-reservation .floor-tab.active {
    background: var(--color-brand-red);
    color: #fff;
}

.playground-reservation .floor-tab:not(.active) {
    background: #fff;
    color: var(--color-brand-red);;
}

.playground-reservation .floor-tab.floor-tab--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    border-color: #ccc;
    color: #999;
    background: #f5f5f5;
}

.playground-reservation .floor-tab.floor-tab--disabled.active {
    background: #ddd;
    color: #666;
    border-color: #ccc;
}

.playground-reservation .pg-resv-step {
    max-width: 720px;
    margin: 0 auto 32px;
    padding: 0 12px;
}

.playground-reservation .pg-resv-step-card {
    padding: 24px 20px 28px;
}

.playground-reservation .pg-resv-step-title {
    font-size: 1.5rem;
    margin: 0 0 10px;
    font-weight: 700;
}

.playground-reservation .pg-resv-step-lead {
    color: #555;
    font-size: 0.95rem;
    margin: 0 0 16px;
    line-height: 1.5;
}

/* base.css 의 * { vertical-align:top } 전역 규칙 때문에 strong/b 가 라인 박스 상단에 붙어
   주변 텍스트와 한 줄에서 어긋나는 현상 보정 — 인라인 강조 요소는 베이스라인 정렬. */
.playground-reservation .pg-resv-step-lead strong,
.playground-reservation .pg-resv-step-lead b,
.playground-reservation .pg-resv-step-lead em,
.playground-reservation .pg-resv-step-lead span {
    vertical-align: baseline;
}

.playground-reservation .pg-resv-step-summary {
    background: #faf8f4;
    border: 1px solid #eee4d6;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.55;
}

.playground-reservation .pg-resv-agree-form .pg-resv-check {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.45;
}

/* 동의 섹션 — 예약정보 / 이용약관 / 개인정보 각 블록 */
.playground-reservation .pg-resv-agree-section {
    margin: 40px 0 40px;
    padding: 0;
}
.playground-reservation .pg-resv-agree-section:last-of-type {
    margin-bottom: 32px;
}
/* 페이지 타이틀(h2) 직후 첫 안내 섹션 — h3→body 간격(14px)과 동일하게 맞춤 */
.playground-reservation .pg-resv-step-title + .pg-resv-agree-section {
    margin-top: 14px;
}
.playground-reservation .pg-resv-step-card--flat {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
.playground-reservation .pg-resv-agree-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 14px;
}
.playground-reservation .pg-resv-agree-icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    background: url('/asset/images/icon_intro_star.png') no-repeat center center;
    background-size: contain;
}
.playground-reservation .pg-resv-agree-body {
    border: 1.5px dashed #999898;
    border-radius: 20px;
    padding: 22px 26px;
    background: #fff;
    font-size: 18px;
    line-height: 1.6;
}
.playground-reservation .pg-resv-agree-summary__dl {
    display: grid;
    grid-template-columns: 90px 1fr;
    row-gap: 6px;
    column-gap: 14px;
    margin: 0;
    font-size: 18px;
    color: #333;
}
.playground-reservation .pg-resv-agree-summary__dl dt {
    font-weight: 700;
    color: #555;
}
.playground-reservation .pg-resv-agree-summary__dl dd {
    margin: 0;
}
.playground-reservation .pg-resv-agree-summary__dl .pg-muted {
    color: #888;
}
.playground-reservation .pg-resv-agree-box {
    max-height: 220px;
    overflow-y: auto;
    border: none;
    border-radius: 0;
    padding: 0 4px 4px 0;
    background: transparent;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 14px;
}
.playground-reservation .pg-resv-agree-box p {
    margin: 0 0 14px;
}
.playground-reservation .pg-resv-agree-box p:last-child {
    margin-bottom: 0;
}
.playground-reservation .pg-resv-agree-box ul {
    margin: 0 0 14px;
    padding-left: 0;
    list-style: none;
}
.playground-reservation .pg-resv-agree-box ul li {
    margin: 4px 0;
    padding-left: 10px;
}
.playground-reservation .pg-resv-agree-box .privacyCon dd ul {
    margin: 5px 0 0;
    padding-left: 18px !important;
}
.playground-reservation .pg-resv-agree-box .privacyCon dd ul > li {
    margin-left: 0 !important;
    padding-left: 0 !important;
    list-style-position: inside !important;
}
.playground-reservation .pg-resv-agree-box strong {
    color: #333;
    font-weight: 700;
}

.swal2-popup .swal2-html-container {
    line-height: 1.7;
}
.swal2-popup .swal2-html-container strong,
.swal2-popup .swal2-html-container b {
    font-size: inherit;
    line-height: inherit;
    vertical-align: baseline;
    display: inline;
    margin: 0;
    padding: 0;
}
.swal2-popup .swal2-html-container div + div {
    margin-top: 4px;
}
.playground-reservation .pg-resv-agree-body + .pg-resv-agree-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 0;
    padding: 6px 4px 6px 14px;
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    cursor: pointer;
}
.playground-reservation .pg-resv-agree-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px 6px 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    cursor: pointer;
}
.playground-reservation .pg-resv-agree-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: #e85a5a;
}
.playground-reservation .pg-resv-agree-check:focus-within {
    outline: 2px solid #e85a5a;
    outline-offset: 2px;
    border-radius: 6px;
    background: #fff5f5;
    box-shadow: 0 0 0 4px rgba(232, 90, 90, 0.12);
}
.playground-reservation .pg-resv-agree-check .req {
    color: #e85a5a;
    font-weight: 700;
    margin-left: 2px;
}
.playground-reservation .pg-resv-agree-all {
    display: flex;
    justify-content: center;
    margin: 28px 0 20px;
    padding: 14px 18px;
    border: 1.5px dashed #999898;
    border-radius: 16px;
    background: #fff;
}
.playground-reservation .pg-resv-agree-check--all {
    padding: 0;
    font-size: 18px;
    font-weight: 600;
}
.playground-reservation .pg-resv-agree-check--all strong {
    color: #e85a5a;
    font-weight: 700;
}
@media (max-width: 520px) {
    .playground-reservation .pg-resv-agree-body {
        padding: 16px 14px;
        border-radius: 16px;
    }
    .playground-reservation .pg-resv-agree-box {
        padding: 0 2px 2px 0;
        max-height: 200px;
    }
    .playground-reservation .pg-resv-agree-heading {
        font-size: 1.1rem;
        gap: 8px;
        padding-left: 10px;
    }
    .playground-reservation .pg-resv-agree-icon {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }
    .playground-reservation .pg-resv-agree-section {
        margin-bottom: 28px;
    }
    .playground-reservation .pg-resv-agree-summary__dl {
        grid-template-columns: 70px 1fr;
        column-gap: 10px;
    }
    .playground-reservation .pg-resv-agree-summary__dl dt { font-size: 14px;}
    .playground-reservation .pg-resv-agree-summary__dl dd { font-size: 14px;}
    
    .playground-reservation .pg-resv-agree-check span,
    .playground-reservation .pg-resv-step-lead,
    .playground-reservation .pg-resv-step-summary,
    .playground-reservation .pg-resv-child-note,
    .playground-reservation .pg-resv-input-form label,
    .playground-reservation .pg-resv-price-row,
    .playground-reservation .pg-resv-price-summary__total{ font-size: 14px !important;}
    .playground-reservation .pg-resv-price-summary__total strong{ font-size: 18px !important;}
}
.playground-reservation .pg-resv-input-form label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}
.playground-reservation .pg-resv-input-form > p,
.playground-reservation .pg-resv-applicant-row > p {
    margin: 0 0 18px;
}
.playground-reservation .pg-resv-input-form > p > .pg-resv-input,
.playground-reservation .pg-resv-input-form > p > .pg-resv-textarea,
.playground-reservation .pg-resv-applicant-row > p > .pg-resv-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

/* 예약자 정보 — PC 에서 이름·연락처 한 줄, 모바일은 자동으로 한 줄씩 */
.playground-reservation .pg-resv-applicant-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 20px;
}
@media (min-width: 768px) {
    .playground-reservation .pg-resv-applicant-row {
        grid-template-columns: 1fr 1fr;
    }
}
.playground-reservation .pg-resv-input-form > p > .pg-resv-textarea {
    min-height: 70px;
    resize: vertical;
}

.playground-reservation .pg-resv-check input {
    margin-right: 8px;
    vertical-align: middle;
}

/* 로그인 회원 자동 채우기 안내 */
.playground-reservation .pg-resv-member-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    margin: 0 0 14px;
    background: #eef7ee;
    border-left: 3px solid #2a7;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #1f5f32;
}
.playground-reservation .pg-resv-member-note i {
    font-size: 1.1em;
}

/* 아동 정보 입력 */
.playground-reservation .pg-resv-child-set {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 14px 0 18px;
    background: #fafafa;
}
.playground-reservation .pg-resv-child-set legend {
    padding: 0 6px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #222;
}
.playground-reservation .pg-resv-child-note {
    margin: 2px 0 12px;
    padding: 8px 12px;
    background: #fff8e1;
    border-left: 3px solid #f0a000;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #6d5500;
}
.playground-reservation .pg-resv-child-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.playground-reservation .pg-resv-child-row {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    padding: 16px 18px;
}
.playground-reservation .pg-resv-child-row > p {
    margin: 0 0 14px;
}
.playground-reservation .pg-resv-child-row > p:last-child {
    margin-bottom: 0;
}
.playground-reservation .pg-resv-child-row > p > label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
    margin: 0 0 6px;
}
.playground-reservation .pg-resv-child-gender {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding: 4px 0;
}
.playground-reservation .pg-resv-child-gender > label {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    margin: 0 !important;
    font-weight: 500 !important;
    font-size: 0.95rem;
    color: #333 !important;
    cursor: pointer;
}
.playground-reservation .pg-resv-child-gender input[type="radio"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #e85a5a;
}
.playground-reservation .pg-resv-child-row__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.playground-reservation .pg-resv-child-row__label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #444;
}
.playground-reservation .pg-resv-child-remove-btn {
    background: #fff;
    color: #c0392b;
    border: 1.5px solid #e89fa5;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
}
.playground-reservation .pg-resv-child-remove-btn:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
}
.playground-reservation .pg-resv-child-actions {
    margin: 12px 0 0;
    text-align: center;
}
.playground-reservation .pg-resv-child-add-btn {
    background: #fff;
    color: #1f5f32;
    border: 1.5px dashed #7acc91;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.12s, color 0.12s, border-style 0.12s;
    width: 100%;
}
.playground-reservation .pg-resv-child-add-btn:hover {
    background: #e8f5ec;
    border-style: solid;
}

/* 추가 보호자 옵션 */
.playground-reservation .pg-resv-extra-set {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 14px 0 18px;
    background: #fafafa;
}
.playground-reservation .pg-resv-extra-set legend {
    padding: 0 6px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #222;
}
.playground-reservation .pg-resv-extra-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #222;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 0;
}
.playground-reservation .pg-resv-extra-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex: 0 0 auto;
    accent-color: #e85a5a;
}
.playground-reservation .pg-resv-extra-note {
    margin: 6px 0 0;
    font-size: 0.85rem;
}

/* 결제 금액 요약 */
.playground-reservation .pg-resv-price-summary {
    background: #fff5f5;
    border: 1.5px solid #f3d6d6;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 14px 0 18px;
}
.playground-reservation .pg-resv-price-summary__rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e9b6b6;
}
.playground-reservation .pg-resv-price-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.92rem;
    color: #444;
}
.playground-reservation .pg-resv-price-row strong {
    color: #c0392b;
}
.playground-reservation .pg-resv-price-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
}
.playground-reservation .pg-resv-price-summary__total strong {
    font-size: 1.3rem;
    color: #e85a5a;
    font-weight: 800;
}
.playground-reservation .pg-resv-child-row__fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px 12px;
}
.playground-reservation .pg-resv-child-row__fields label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.88rem;
    color: #555;
    margin: 0;
    font-weight: 600;
}
.playground-reservation .pg-resv-child-row__fields .pg-resv-input {
    font-size: 1rem;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    width: 100%;
}
.playground-reservation .pg-resv-child-birth-group {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 6px;
    width: 100%;
}
.playground-reservation .pg-resv-child-birth-group > .pg-resv-input {
    min-width: 0;
    padding: 8px 4px;
}
@media (max-width: 520px) {
    .playground-reservation .pg-resv-child-row__fields {
        grid-template-columns: 1fr;
    }
}

.playground-reservation .pg-resv-complete-children {
    list-style: none;
    margin: 0;
    padding: 0;
}
.playground-reservation .pg-resv-complete-children li {
    padding: 3px 0;
}
.playground-reservation .pg-resv-complete-child-meta {
    color: #666;
    font-size: 0.9em;
    margin-left: 8px;
}

/* 예약 접수 완료 페이지 */
.playground-reservation .pg-resv-complete {
    background: #fff5f5;
    border: 1px solid #f3d6d6;
    border-radius: 12px;
    padding: 20px 22px;
    margin: 18px 0 22px;
}
.playground-reservation .pg-resv-complete__list {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px 16px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
}
.playground-reservation .pg-resv-complete__list dt {
    font-weight: 600;
    color: #666;
}
.playground-reservation .pg-resv-complete__list dd {
    margin: 0;
    color: #222;
    word-break: break-word;
}
.playground-reservation .pg-resv-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.playground-reservation .pg-resv-status--pending {
    background: #fff3cd;
    color: #8a6d00;
}
.playground-reservation .pg-resv-status--approved {
    background: #d4edda;
    color: #1f5f32;
}
.playground-reservation .pg-resv-status--done {
    background: #e2e3e5;
    color: #383d41;
}
.playground-reservation .pg-resv-status--cancelled {
    background: #f8d7da;
    color: #721c24;
}
@media (max-width: 520px) {
    .playground-reservation .pg-resv-complete__list {
        grid-template-columns: 1fr;
        gap: 2px 0;
    }
    .playground-reservation .pg-resv-complete__list dt {
        margin-top: 8px;
    }
}

.playground-reservation .pg-resv-input,
.playground-reservation .pg-resv-textarea {
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 18px;
}

.playground-reservation .pg-resv-textarea {
    resize: vertical;
    max-width: 100%;
}

.playground-reservation .pg-resv-step-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}
.playground-reservation .pg-resv-step-actions--back {
    justify-content: flex-start;
    gap: 10px;
}
.playground-reservation .pg-resv-step-actions--center {
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    margin-bottom: 20px;
}
.playground-reservation .pg-resv-step-actions--center .reserve-btn,
.playground-reservation .pg-resv-step-actions--center .pg-resv-btn-next,
.playground-reservation .pg-resv-step-actions--center .pg-resv-btn-lookup,
.playground-reservation .pg-resv-step-actions--center .pg-resv-link-back {
    margin: 0;
    width: auto;
    min-width: 150px;
    max-width: none;
    padding: 13px 36px;
    font-size: 1rem;
    line-height: 1.2;
}
/* 예약 조회 버튼 — 파스텔 블루 */
.playground-reservation .pg-resv-btn-lookup {
    background: var(--color-brand-blue);
    color: #fff;
    border: none;
}
.playground-reservation .pg-resv-btn-lookup:hover {
    background: #6d9bcc;
    color: #fff;
}
.playground-reservation .pg-resv-btn-lookup i {
    color: inherit;
}
/* 접수 완료 페이지 — 3버튼 한 줄. 좁은 화면에서 줄바꿈 허용 */
.playground-reservation .pg-resv-step-actions--complete {
    flex-wrap: wrap;
    row-gap: 10px;
}
.playground-reservation .pg-resv-main-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0 0;
}

.playground-reservation .pg-resv-link-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    padding: 13px 36px;
    min-width: 150px;
    border: none;
    border-radius: 999px;
    background: #626262;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    line-height: 1.2;
    cursor: pointer;
}
.playground-reservation .pg-resv-link-back:hover {
    background: #4a4a4a;
    color: #fff;
}

.playground-reservation .pg-resv-btn-lookup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    padding: 13px 36px;
    min-width: 150px;
    border: none;
    border-radius: 999px;
    background: var(--color-brand-blue);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    line-height: 1.2;
    cursor: pointer;
}
.playground-reservation .pg-resv-btn-lookup:hover {
    background: #6d9bcc;
    color: #fff;
}

/* '내 예약 조회·취소' 링크 — base.css 의 a:link/:hover{color:inherit} 및 *{color:#222} 를
   이기기 위해 a.class + 모든 상태 pseudoclass 를 명시. 아이콘은 hover 상태까지 inherit 고정.
   playground/resv.css 와 program/program.css 가 동일 규칙을 공유함. */
.playground-reservation .pg-resv-top-actions {
    display: flex;
    justify-content: flex-end;
    margin: 10px 0 18px;
}
a.pg-resv-my-resv-link,
a.pg-resv-my-resv-link:link,
a.pg-resv-my-resv-link:visited,
a.pg-resv-my-resv-link:active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 25px;
    border-radius: 999px;
    background: #626262;
    border: 1px dashed #bbb;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}
a.pg-resv-my-resv-link:hover,
a.pg-resv-my-resv-link:hover i {
    color: #fff;
}
a.pg-resv-my-resv-link:hover {
    background-color: var(--color-brand-red);
}
a.pg-resv-my-resv-link i {
    color: inherit;
    transition: color 0.15s;
}

/* 예약 조회 결과 */
.playground-reservation .pg-resv-lookup-result {
    margin-top: 18px;
}
.playground-reservation .pg-resv-lookup-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 18px 0 10px;
    color: #222;
}
.playground-reservation .pg-resv-lookup-empty,
.playground-reservation .pg-resv-lookup-loading {
    padding: 24px 12px;
    text-align: center;
    color: #888;
    background: #fafafa;
    border: 1px dashed #ddd;
    border-radius: 8px;
}
.playground-reservation .pg-resv-lookup-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.playground-reservation .pg-resv-lookup-item {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 14px 16px;
}
.playground-reservation .pg-resv-lookup-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}
.playground-reservation .pg-resv-lookup-date {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
}
.playground-reservation .pg-resv-lookup-item__body {
    font-size: 0.95rem;
    line-height: 1.5;
}
.playground-reservation .pg-resv-lookup-item__actions {
    margin-top: 10px;
    text-align: right;
}
.playground-reservation .pg-resv-lookup-item__note {
    margin-top: 8px;
    font-size: 0.85rem;
}
.playground-reservation .pg-resv-lookup-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    justify-content: flex-end;
}
.playground-reservation .pg-resv-lookup-cancel-btn,
.playground-reservation .pg-resv-lookup-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
    text-decoration: none;
}
.playground-reservation .pg-resv-lookup-cancel-btn i,
.playground-reservation .pg-resv-lookup-edit-btn i {
    color: inherit;
}
.playground-reservation .pg-resv-lookup-cancel-btn {
    color: #c0392b;
    border: 1.5px solid #c0392b;
}
.playground-reservation .pg-resv-lookup-cancel-btn:hover {
    background: #c0392b;
    color: #fff;
}
.playground-reservation .pg-resv-lookup-edit-btn {
    color: #2c3e82;
    border: 1.5px solid #2c3e82;
}
.playground-reservation .pg-resv-lookup-edit-btn:hover {
    background: #2c3e82;
    color: #fff;
}
.playground-reservation .pg-resv-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 12px 0 18px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.playground-reservation .pg-resv-alert--warn {
    background: #fff3cd;
    border: 1px solid #e0c044;
    color: #8a6d00;
}
.playground-reservation .pg-resv-summary-box {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 18px;
}
.playground-reservation .pg-resv-summary-dl {
    display: grid;
    grid-template-columns: 110px 1fr;
    row-gap: 6px;
    column-gap: 12px;
    margin: 0;
    font-size: 0.95rem;
}
.playground-reservation .pg-resv-summary-dl dt {
    font-weight: 700;
    color: #555;
}
.playground-reservation .pg-resv-summary-dl dd {
    margin: 0;
}

/* 상태 배지 (예약 조회 페이지에서 재사용) */
.playground-reservation .pg-resv-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.playground-reservation .pg-resv-status--pending { background: #fff3cd; color: #8a6d00; border-color: #e0c044; }
.playground-reservation .pg-resv-status--approved { background: #d4edda; color: #1f5f32; border-color: #7acc91; }
.playground-reservation .pg-resv-status--done { background: #e2e3e5; color: #383d41; border-color: #a8adb3; }
.playground-reservation .pg-resv-status--cancelled { background: #f8d7da; color: #721c24; border-color: #e89fa5; }

.playground-reservation .pg-resv-btn-next {
    min-width: 200px;
}

.playground-reservation .req {
    color: #e85a5a;
}

@media (max-width: 480px) {
    .playground-reservation .pg-resv-step-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .playground-reservation .pg-resv-btn-next {
        width: 100%;
    }
    
    .playground-reservation .pg-resv-top-actions {
    justify-content: center;
}
}

.playground-reservation .schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2px;
}

.playground-reservation .schedule-table thead th {
    font-size: 14px;
    font-weight: 700;
    color: #575757;
    padding: 11px 6px;
    border-top: 2px solid #3c3c3c;
    border-bottom: 2px solid #3c3c3c;
}

.playground-reservation .schedule-table tbody td {
    padding: 11px 6px;
    text-align: center;
    font-size: 18px;
    border-bottom: 1px dashed #999898;
}

.playground-reservation .schedule-table tbody tr.schedule-slot-row--available td {
    background-color: #fff !important;
}

.playground-reservation .schedule-table tbody tr.schedule-slot-row--full td {
    background-color: #f6f6f6 !important;
}

.playground-reservation .schedule-table tbody tr:last-child td {
    border-bottom: 1px dashed #999898;
}

/* 퍼블리셔 base.css 의 * {appearance:none} 으로 사라지는 기본 라디오/체크박스 UI 복원 */
.playground-reservation input[type="radio"],
.playground-reservation input[type="checkbox"] {
    appearance: auto;
    -webkit-appearance: auto;
}

.playground-reservation .radio-cell input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #e85a5a;
    cursor: pointer;
}

.playground-reservation .radio-cell input[type="radio"]:disabled {
    cursor: not-allowed;
}

.playground-reservation .badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
}

.playground-reservation .badge.available {
    border: 1px solid #e85a5a;
    color: #e85a5a;
    background: #fff;
}

.playground-reservation .badge.full {
    border: 1px solid #333;
    color: #333;
    background: #fff;
}

.playground-reservation .reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42%;
    min-width: 180px;
    max-width: 250px;
    margin: auto auto 0;
    padding: 13px;
    background: var(--color-brand-red);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.15s;
}
.playground-reservation .reserve-btn i {
    margin-right: 5px;
    color: inherit;
}

.playground-reservation a.reserve-btn {
    text-decoration: none;
    color: #fff;
}
.playground-reservation .reserve-btn:hover {
    background: #e64b4b;
    color: #fff;
}

.playground-reservation .reserve-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.playground-reservation .info-card-wrapper {
    background: #FFF7FA;
    border-radius: 32px;
    border: 1.5px dashed #999898;
    margin-top: 50px;
}

.playground-reservation .info-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 30px;
}

.playground-reservation .info-character {
    flex-shrink: 0;
    width: 450px;
    height: 200px;
    position: relative;
    max-width: 100%;
}

.playground-reservation .info-character svg,
.playground-reservation .info-character img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.playground-reservation .info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 2px;
    margin: 0;
}

.playground-reservation .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 18px;
    line-height: 1.8;
    color: #343434;
}

.playground-reservation #resvInfoList li::before {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: 23px;
    height: 23px;
    background: url('/asset/images/icon_caution.png') no-repeat center / contain;
    margin-top: 2px;
}

.playground-reservation .no-date-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 320px;
    height: 100%;
    padding: 32px 20px;
    text-align: center;
    color: #888;
}
.playground-reservation .no-date-msg__icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    border: 2px dashed #e2c46a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5b731;
    font-size: 36px;
    box-shadow: 0 4px 14px rgba(245, 183, 49, 0.12);
    animation: pg-nodate-float 3s ease-in-out infinite;
}
.playground-reservation .no-date-msg__title {
    font-size: 21px;
    font-weight: 700;
    color: #444;
    letter-spacing: -0.3px;
}
.playground-reservation .no-date-msg__sub {
    font-size: 16px;
    line-height: 1.6;
    color: #9b9b9b;
}
@keyframes pg-nodate-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@media (max-width: 1280px) {
    .playground-reservation {
        max-width: 100%;
        padding: 8px 10px 20px;
    }
    .playground-reservation .main-area {
        gap: 20px;
    }
    .playground-reservation .card {
        padding: 24px 22px 20px;
    }
}

@media (max-width: 1024px) {
    .playground-reservation .main-area {
        flex-direction: column;
    }
    .playground-reservation .calendar-card,
    .playground-reservation .reservation-card {
        height: auto;
    }
    .playground-reservation .reservation-top {
        flex-wrap: wrap;
    }
}

@media (max-width: 860px) {
    
    .playground-reservation .main-area {
        flex-direction: column;
    }
    .playground-reservation .calendar-card,
    .playground-reservation .reservation-card {
        height: auto;
    }
    .playground-reservation .calendar-nav .month-label {
        font-size: 24px;
        min-width: 160px;
    }
    .playground-reservation .calendar-grid .day-cell {
        font-size: 18px;
        min-height: 52px;
    }
    .playground-reservation .calendar-grid .day-cell__badge {
        font-size: 14px;
        padding: 3px 5px;
    }
    .playground-reservation .calendar-grid .day-header {
        font-size: 16px;
        padding: 9px 4px 11px;
    }
    .playground-reservation .reservation-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .playground-reservation .selected-date {
        font-size: 24px;
    }
    .playground-reservation .schedule-table thead th {
        font-size: 16px;
        padding: 10px 5px;
    }
    .playground-reservation .schedule-table tbody td {
        font-size: 17px;
        padding: 10px 5px;
    }
    .playground-reservation .badge {
        font-size: 16px;
        padding: 6px 13px;
    }
    .playground-reservation .floor-tab {
        font-size: 17px;
        padding: 9px 20px;
    }
    .playground-reservation .info-list li {
        font-size: 17px;
    }
    .playground-reservation .card { padding: 20px;}
    .playground-reservation .info-card {
        flex-direction: column;
        gap: 16px;
        padding: 10px 20px;
    }
    .playground-reservation .info-character {
        margin: 0 auto;
        width: 180px;
        height: 80px;
    }
    .playground-reservation .reserve-btn {
        margin-top: 20px;
    }
}

/* 좁은 모바일: iOS 자동 축소 방지 + 본문·회차표 가독성 */
@media (max-width: 480px) {
    .playground-reservation {
        font-size: 18px;
        -webkit-text-size-adjust: 100%;
        padding: 10px 8px 20px;
    }
    .playground-reservation .calendar-nav .month-label {
        font-size: 1.35rem;
        min-width: 0;
    }
    .playground-reservation .calendar-nav button {
        font-size: 16px;
        padding: 2px 0;
    }
    .playground-reservation .calendar-grid .day-header {
        font-size: 14px;
        padding: 10px 2px 10px;
    }
    .playground-reservation .calendar-grid .day-cell {
        font-size: 14px;
        min-height: 50px;
    }
    .playground-reservation .calendar-grid .day-cell__badge {
        font-size: 12px;
        padding: 3px 4px;
    }
    .playground-reservation .selected-date {
        font-size: 1.35rem;
    }
    .playground-reservation .schedule-table thead th {
        font-size: 12px;
        padding: 10px 3px;
    }
    .playground-reservation .schedule-table tbody td {
        font-size: 12px;
        padding: 10px 3px;
    }
    .playground-reservation .badge {
        font-size: 12px;
        padding: 5px;
    }
    .playground-reservation .floor-tab {
        font-size: 14px;
        min-width: 72px;
    }
    .playground-reservation .reserve-btn {
        font-size: 14px;
        width: 100%;
        max-width: none;
        min-width: 0;
    }
    .playground-reservation .no-date-msg {
        min-height: 220px;
        padding: 24px 12px;
    }
    .playground-reservation .no-date-msg__icon {
        width: 68px;
        height: 68px;
        font-size: 30px;
    }
    .playground-reservation .no-date-msg__title {
        font-size: 14px;
    }
    .playground-reservation .no-date-msg__sub {
        font-size: 14px;
    }
    .playground-reservation .info-list li {
        font-size: 14px;
    }
    .playground-reservation .info-character img { width: 100%;}
    
}

/* 이용안내 바로가기 버튼*/
.pg-resv-bottom-actions{
    display: flex;
    justify-content: center;
    margin: 60px 0 18px;
}
.guideBtn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 50px;
    border-radius: 999px;
    background-color: var(--color-brand-red);
    
    border: 1px dashed #bbb;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}
a.guideBtn {
    color: #fff;
}
.guideBtn:hover {
    background: #626262;
}

@media (max-width: 480px) {
    .guideBtn { padding-top: 8px; padding-bottom: 8px;}
}

/* =============================================================================
   예약 조회 페이지 전용 — 섹션형 레이아웃 (입력폼·결과 목록)
   ============================================================================= */
.playground-reservation.pg-resv-lookup-page .pg-resv-lookup-section {
    margin: 24px 0;
}
.playground-reservation.pg-resv-lookup-page .pg-resv-lookup-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px 20px;
    margin: 0;
}
.playground-reservation.pg-resv-lookup-page .pg-resv-lookup-form .pg-resv-lookup-field {
    margin: 0;
}
@media (min-width: 768px) {
    .playground-reservation.pg-resv-lookup-page .pg-resv-lookup-form {
        grid-template-columns: 1fr 1fr;
    }
}
.playground-reservation.pg-resv-lookup-page .pg-resv-lookup-actions {
    margin: 18px 0 8px;
}

/* 조회결과 — 섹션 헤딩 (조회 결과 / 총 N건) */
.playground-reservation.pg-resv-lookup-page .pg-resv-lookup-result-section {
    margin: 32px 0 24px;
}
.playground-reservation .pg-resv-lookup-count {
    font-size: 0.95rem;
    font-weight: 500;
    color: #888;
    margin-left: 6px;
}

/* 조회결과 리스트 — 카드 그리드 (반응형 자동 줄바꿈)
   auto-fit: 카드 수에 맞춰 가용 공간을 균등 분배해 우측 빈 트랙이 남지 않도록. */
.playground-reservation.pg-resv-lookup-page .pg-resv-lookup-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: initial;
}
.playground-reservation.pg-resv-lookup-page .pg-resv-lookup-item {
    margin: 0;
}
