/* 예약조회 팝업 — 리스트용으로 크게 */
.guest-find-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2500;
}

.guest-find-popup {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    width: 860px;        /* 넓게 */
    max-width: 95vw;
    max-height: 85vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.guest-find-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid #033054;
}

.guest-find-popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-family: psb;
    color: #033054;
}

.guest-find-popup-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0;
}

.guest-find-popup-close:hover {
    color: #333;
}

/* 팝업 안 테이블 스타일 보정 */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    word-break: keep-all;
}

table th,
table td {
    padding: 8px 10px;
    border: 1px solid #ddd;
    vertical-align: middle;
    white-space: nowrap;
}

table th {
    background: #f5f6f8;
    color: #333;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .guest-find-popup {
        padding: 16px;
        width: 98vw;
    }
    table th,
    table td {
        white-space: normal;
        font-size: 12px;
    }
}