/**
 * 모바일: 연락처·예약현황 섹션 스타일 (메인과 동일)
 * 모든 페이지에서 동일한 모바일 레이아웃 적용
 */
/* 접수현황 열 헤더·내용 정렬 */
.booking-status-tables table { table-layout: fixed; width: 100%; }
.booking-status-tables th:nth-child(4),
.booking-status-tables td:nth-child(4) { text-align: center; }

/* 모바일: 통계 카드 한 줄에 1개씩 더 크게 + 제목 폰트 줄여서 한 줄 표시 */
@media (max-width: 991px) {
    .prunox-stat-card-wrap {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 24px !important;
        align-items: stretch !important;
        max-width: 100%;
    }
    .prunox-stat-card {
        flex: 0 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 36px 28px !important;
        box-sizing: border-box;
    }
    .prunox-stat-card p:first-of-type { font-size: 18px !important; }
    .prunox-stat-card p:last-of-type { font-size: 40px !important; }
    .prunox-stat-card p:last-of-type span:first-child { font-size: 40px !important; }
    .prunox-stat-card p:last-of-type span:last-child { font-size: 18px !important; }
    .prunox-stat-card svg { width: 52px !important; height: 52px !important; }
}
@media (max-width: 768px) {
    .prunox-stat-card-wrap {
        gap: 20px !important;
    }
    .prunox-stat-card {
        padding: 32px 24px !important;
    }
    .prunox-stat-card p:first-of-type { font-size: 16px !important; }
    .prunox-stat-card p:last-of-type { font-size: 34px !important; }
    .prunox-stat-card p:last-of-type span:first-child { font-size: 34px !important; }
    .prunox-stat-card p:last-of-type span:last-child { font-size: 15px !important; }
    .prunox-stat-card svg { width: 48px !important; height: 48px !important; }
}
/* 모바일: 예약현황 제목·부제 폰트 줄여서 한 줄로 */
@media (max-width: 991px) {
    .booking-status-title { font-size: 28px !important; white-space: nowrap; }
}
@media (max-width: 768px) {
    .booking-status-title { font-size: 22px !important; white-space: nowrap; }
}
@media (max-width: 480px) {
    .booking-status-title { font-size: 18px !important; white-space: nowrap; }
}
@media (max-width: 768px) {
    .booking-status-subtitle { font-size: 14px !important; white-space: nowrap; }
}
@media (max-width: 480px) {
    .booking-status-subtitle { font-size: 12px !important; }
}
@media (max-width: 768px) {
    .booking-status-col {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .booking-status-tables {
        max-width: 100% !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .booking-status-tables table {
        table-layout: fixed !important;
        width: 100% !important;
        min-width: 280px;
    }
    .booking-status-tables th,
    .booking-status-tables td {
        padding: 8px 6px !important;
        font-size: 13px !important;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    .booking-status-tables th:nth-child(1),
    .booking-status-tables td:nth-child(1) { width: 22%; }
    .booking-status-tables th:nth-child(2),
    .booking-status-tables td:nth-child(2) { width: 18%; }
    .booking-status-tables th:nth-child(3),
    .booking-status-tables td:nth-child(3) { width: 35%; }
    .booking-status-tables th:nth-child(4),
    .booking-status-tables td:nth-child(4) { width: 25%; font-size: 12px !important; text-align: center; }
    .booking-status-tables td:nth-child(4) span {
        display: inline-block !important;
        max-width: 100% !important;
        white-space: normal !important;
        word-break: keep-all !important;
        text-align: center !important;
        line-height: 1.3 !important;
        padding: 6px 8px !important;
        font-size: 12px !important;
    }
}
