#resultModal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background-color: #fffdf7;
    border-radius: 10px;
    padding: 20px;
    width: 85%;
    max-height: 85%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: #333;
}

#modalClose {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 24px;
    cursor: pointer;
    color: #6c5742;
}

/* 표 스타일 */
.modal-content table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 13.5px;
    background-color: #fffefb;
    border: 1px solid #dcd3c2;
    border-radius: 8px;
}

.modal-content th,
.modal-content td {
    padding: 10px 6px;
    border: 1px solid #e0d8c8;
    text-align: center;
    word-break: break-word;
    vertical-align: middle;
}

.modal-content th {
    background-color: #f6f1e9;
    font-weight: 600;
    color: #5a4631;
}

.modal-content td {
    background-color: #ffffff;
    color: #333;
}

/* 링크 스타일 */
.modal-content td a {
    color: #3a6ea5;
    text-decoration: underline;
    word-break: break-all;
}


/* 테이블 기본 스타일 */
#modalBody table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
}
  
  /* 컬럼 너비 조절 */
#modalBody table td:nth-child(2),  /* 일일수영요금 */
#modalBody table th:nth-child(2) {
    width: 100px;
}  
  

