.suic-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.suic-table thead {
    background: #f7f8fa;
}

.suic-table th {
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.suic-table td {
    padding: 13px 18px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.suic-table tbody tr:hover {
    background: #f5f9ff;
    cursor: pointer;
}

.suic-table tbody tr:last-child td {
    border-bottom: none;
}

/* 페이지 네이션 */
#pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 25px;
}

#pagination .page-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

#pagination .page-link:hover {
    background: #f3f7ff;
    border-color: #b9d3ff;
    color: #005bcc;
}

#pagination .page-link.active {
    background: #005bcc;
    border-color: #005bcc;
    color: #fff;
    pointer-events: none;
}

/* 팝업 전체 컨테이너 */
.fancybox__content {
    width: min(90vw, 600px); /* 화면의 90% 이내, 최대 600px */
    padding: clamp(16px, 4vw, 32px);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    background: #fff;
}
/* 팝업 전체 컨텐츠 */
#point-request-div {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* 라벨 + 값 한 줄 */
.point-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.point-row label {
    width: 110px;
    font-weight: 600;
    color: #444;
}

.point-row span {
    flex: 1;
    background: #f5f7fa;      /* 배경 박스 */
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e1e4e8;
    box-sizing: border-box;
}

/* 입력 + 버튼 라인 */
.point-edit {
    display: flex;
    gap: 8px;
    align-items: center;
}

.point-edit input[type="number"] {
    width: 120px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.point-edit button {
    padding: 8px 12px;
    background: #121212;
    color: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background .2s;
    font-size: 14px;
}
.point-edit button:hover {
    background: #742CF5;
}

/* 승인 / 거절 버튼 */
.popup-button-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.popup-button-group button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: .2s;
}

.popup-button-group .approve {
    background: #0073aa;
    color: #fff;
}
.popup-button-group .approve:hover {
    background: #005177;
}

.popup-button-group .reject {
    background: #f53d3d;
    color: #fff;
}
.popup-button-group .reject:hover {
    background: #c81414;
}
/* 검색 전체 박스 */
.search-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    margin: 18px 0 25px;
    background: #fafafa;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    box-sizing: border-box;
}

/* 검색창 */
.search-container input {
    flex: 1;                  /* ← 30% 대신 자동 확장 */
    padding: 12px 16px;
    font-size: 15px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
}

/* 버튼 그룹 */
.button-group {
    display: flex;
    gap: 10px;
}

/* 검색 / 초기화 버튼 */
.button-group button {
    padding: 12px 18px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    background: #121212;
    color: #fff;
    border-radius: 6px;
    transition: background 0.2s;
    white-space: nowrap;  /* 줄바꿈 방지 */
}
.button-group button:hover {
    background: #742CF5;
}