/* 입금 안내 add */

.pay-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    background-color: #f8f9fa; /* 부드러운 배경색 */
}

/* 정보 박스 스타일 */
.pay-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 750px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e1e4e8;
}
.pay-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.4;
}
.pay-body {
    padding: 35px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #fcfcfc);
}

.bank-info {
    font-size: 26px;
    color: #1a73e8; /* 강조 파란색 */
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.account-holder {
    font-size: 18px;
    color: #5f6368;
    display: block;
}

/* 강조 뱃지 */
.copy-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 15px;
    background-color: #e8f0fe;
    color: #1967d2;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* 콩그레스 2026 일정표 */

.schedule-container {
    max-width: 800px;
    margin: 20px auto; /* 중앙 정렬 */
    padding: 10px;
    font-family: 'Malgun Gothic', dotum, sans-serif;
    background-color: #f4f7f6;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.schedule-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 5px;
    color: #2c3e50;
    border-left: 5px solid #2c3e50;
}

/* 테이블 감싸는 영역 (가로 스크롤 방지 및 모바일 대응) */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* 800px보다 작아지면 스크롤 발생 */
    background: #fff;
    border-radius: 8px;
    border: 1px solid #333;
}

.table-responsive table {
    width: 100%;
    min-width: 780px; 
    border-collapse: separate; 
    border-spacing: 0;
    table-layout: fixed; 
}

.table-responsive th, td {
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    /* border: 1px solid #333; */
    text-align: center;
    padding: 8px 2px;
    font-size: 13px;
    line-height: 1.4;
    word-break: keep-all;
}
/* 마지막 열과 행의 테두리 중복 제거 */
.table-responsive th:last-child, .table-responsive td:last-child {
    border-right: none;
}
.table-responsive tr:last-child td {
    border-bottom: none;
}

.table-responsive th {
    background-color: #eee;
    height: 35px;
    font-weight: bold;
}

.day-col {
    background-color: #f9f9f9;
    font-weight: bold;
    width: 80px;
}

/* 이벤트 텍스트 강조 */
.event-text {
    font-weight: 500;
    color: #333;
}