

/* 기본테이블 */
.tbl_wrap table {width:100%;border-collapse:collapse;border-spacing:0 5px; background:none; } 
.tbl_wrap caption {padding:10px 0;font-weight:bold;text-align:left}
.tbl_head01 {margin:0 0 10px}
.tbl_head01 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head01 thead th {padding:var(--gap-7, 24px) 0;font-weight:normal;text-align:center;border-bottom:1px solid var(--color-border)}
.tbl_head01 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th, .tbl_head01 tfoot td {
    padding:var(--gap-7, 24px) 0;
    border-top:1px solid var(--color-border);
    border-bottom:1px solid var(--color-border);
    background:var(--color-bg-alt); /* --color-accent-light → --color-bg-alt */
    text-align:center
}
.tbl_head01 tbody th {padding:var(--gap-7, 24px) 0;border-bottom:1px solid var(--color-border)}
.tbl_head01 td {border-bottom:1px solid var(--color-border);padding:var(--gap-7, 24px) var(--gap-3, 12px);word-break:break-all}
.tbl_head01 tbody tr:hover td {background: var(--color-bg-alt)}
.tbl_head01 a:hover {text-decoration:underline}

/* 게시판 테이블 스타일 02 */
.tbl_head02 {margin:0 0 10px}
.tbl_head02 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head02 thead th {padding:5px 0;border-top:1px solid #d1dee2;border-bottom:1px solid #d1dee2;background:#e5ecef;color:#383838;font-size:0.8125rem;text-align:center;letter-spacing:-0.1em}
.tbl_head02 thead a {color:#383838}
.tbl_head02 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head02 tfoot th, .tbl_head02 tfoot td {padding:10px 0;border-top:1px solid #c1d1d5;border-bottom:1px solid #c1d1d5;background:#d7e0e2;text-align:center}
.tbl_head02 tbody th {padding:5px 0;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:#fff}
.tbl_head02 td {padding:5px 3px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:#fff;line-height:1.4em;word-break:break-all}



/* 이벤트 등록 폼 스타일 */
.event_register_form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.event_register_form h3 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #FFA702;
}

.form_section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.form_section h4 {
    color: #FFA702;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 167, 2, 0.3);
}

.form_row {
    margin-bottom: 20px;
}

.form_row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.form_row label.required:after {
    content: ' *';
    color: #e91e63;
    font-weight: bold;
}

.form_row .frm_input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 15px;
}

.form_row .frm_input:focus {
    outline: none;
    border-color: #FFA702;
    background: rgba(255, 255, 255, 0.15);
}

.form_row .frm_input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form_row select.frm_input option,
#wr_6 option,
#wr_7 option {
    background: #ffffff;
    color: #000000;
}

.form_help {
    margin-top: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.radio_group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio_label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.radio_label:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 167, 2, 0.5);
}

.radio_label input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FFA702;
}

.radio_label input[type="radio"]:checked + span {
    color: #FFA702;
    font-weight: 600;
}

.radio_label span {
    color: #ffffff;
    font-size: 15px;
    user-select: none;
}

.file_upload_wrapper {
    margin-top: 5px;
}

.file_upload_wrapper .frm_file {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    cursor: pointer;
}

.file_upload_wrapper .frm_file:hover {
    border-color: #FFA702;
    background: rgba(255, 167, 2, 0.1);
}

.file_del {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.file_del label {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.btn_confirm {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn_confirm .btn {
    padding: 12px 30px;
    margin: 0 5px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn_cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn_cancel:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn_submit {
    background: #FFA702;
    color: #0a1628;
    font-weight: bold;
}

.btn_submit:hover {
    background: #ff9500;
}

/* 개인정보 수집 및 이용 동의 */
.privacy_section {
    background: rgba(26, 84, 144, 0.1);
    border: 1px solid rgba(26, 84, 144, 0.3);
}

.privacy_section h4 {
    color: #1a5490;
    border-bottom-color: rgba(26, 84, 144, 0.3);
}

.privacy_notice {
    background: rgba(255, 249, 230, 0.1);
    border-left: 4px solid #FFA702;
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.privacy_notice p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.privacy_notice p:last-child {
    margin-bottom: 0;
}

.privacy_content_scroll {
    margin-bottom: 24px;
}

.privacy_content_scroll h5 {
    font-size: 16px;
    color: #FFA702;
    margin: 0 0 12px;
    font-weight: 600;
}

.privacy_scroll_box {
    max-height: 300px;
    overflow-y: auto;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.privacy_scroll_box p {
    margin: 0 0 16px;
}

.privacy_scroll_box p:last-child {
    margin-bottom: 0;
}

.privacy_scroll_box strong {
    color: #ffffff;
    font-weight: 600;
}

.privacy_scroll_box::-webkit-scrollbar {
    width: 8px;
}

.privacy_scroll_box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.privacy_scroll_box::-webkit-scrollbar-thumb {
    background: rgba(255, 167, 2, 0.5);
    border-radius: 4px;
}

.privacy_scroll_box::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 167, 2, 0.7);
}

.privacy_agree {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy_checkbox_label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 167, 2, 0.3);
    border-radius: 6px;
    transition: all 0.3s;
}

.privacy_checkbox_label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 167, 2, 0.5);
}

.privacy_checkbox_label input[type="checkbox"] {
    margin-top: 2px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FFA702;
    flex-shrink: 0;
}

.privacy_checkbox_label span {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    user-select: none;
}

.privacy_checkbox_label input[type="checkbox"]:checked + span {
    color: #FFA702;
    font-weight: 600;
}

.required_mark {
    color: #e91e63;
    font-weight: bold;
}

/* 캡차 스타일 */
#captcha_wrap {
    text-align: center;
    padding: 15px;
}

#captcha_img {
    margin: 10px 0;
}

#captcha_key {
    width: 200px;
    padding: 10px;
    margin: 10px auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 16px;
}

/* 반응형 */
@media (max-width: 768px) {
    .event_register_form {
        padding: 15px;
    }
    
    .form_section {
        padding: 20px 15px;
    }
    
    .radio_group {
        gap: 10px;
    }
    
    .radio_label {
        padding: 8px 12px;
    }
    
    .radio_label span {
        font-size: 14px;
    }
    
    .btn_confirm .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
    
    .privacy_notice {
        padding: 12px 16px;
    }
    
    .privacy_notice p {
        font-size: 13px;
    }
    
    .privacy_scroll_box {
        max-height: 250px;
        padding: 12px;
        font-size: 13px;
    }
    
    .privacy_scroll_box p {
        margin-bottom: 12px;
    }
    
    .privacy_checkbox_label {
        padding: 10px 12px;
    }
    
    .privacy_checkbox_label span {
        font-size: 14px;
    }
}

/* 사전등록 완료 페이지 스타일 */
.register-success {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.1) 0%, rgba(255, 167, 2, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid rgba(255, 167, 2, 0.3);
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 80px;
    color: #4CAF50;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.register-success h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-message {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.success-message strong {
    color: #FFA702;
    font-weight: 600;
}

.register-number {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 167, 2, 0.15);
    border: 1px solid rgba(255, 167, 2, 0.5);
    border-radius: 50px;
    margin-top: 20px;
}

.register-number .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.register-number .number {
    font-size: 18px;
    font-weight: 700;
    color: #FFA702;
    font-family: 'Courier New', monospace;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th {
    width: 180px;
    min-width: 180px;
    padding: 14px 16px;
    background: rgba(255, 167, 2, 0.1);
    color: #FFA702;
    font-weight: 600;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table td {
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

/* 파일 목록 */
.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.file-list li i {
    font-size: 24px;
    color: #FFA702;
}

.file-list li a {
    color: #ffffff;
    text-decoration: none;
    flex: 1;
    transition: color 0.3s;
}

.file-list li a:hover {
    color: #FFA702;
    text-decoration: underline;
}

.file-size {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* 안내 박스 */
.notice-box {
    background: rgba(255, 249, 230, 0.1);
    border-left: 4px solid #FFA702;
    padding: 20px 24px;
    border-radius: 6px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.info-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFA702;
    font-weight: bold;
    font-size: 18px;
}

.info-list li:last-child {
    margin-bottom: 0;
}

/* 버튼 영역 */
.btn-area {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: #FFA702;
    color: #0a1628;
}

.btn-primary:hover {
    background: #ff9500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 167, 2, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 167, 2, 0.5);
}

/* 반응형 */
@media (max-width: 768px) {
    .register-success {
        padding: 30px 15px;
    }
    
    .success-icon i {
        font-size: 60px;
    }
    
    .register-success h2 {
        font-size: 22px;
    }
    
    .success-message {
        font-size: 14px;
    }
    
    .register-number {
        flex-direction: column;
        gap: 8px;
        padding: 10px 20px;
    }
    
    .info-table th {
        width: 120px;
        min-width: 120px;
        font-size: 14px;
        padding: 12px;
    }
    
    .info-table td {
        font-size: 14px;
        padding: 12px;
    }
    
    .btn-area {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ==========================================
   목록 페이지 스타일
   ========================================== */

/* 페이지 헤더 */
.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 167, 2, 0.3);
}

.page-header h2 {
    font-size: 28px;
    color: #ffffff;
    margin: 0 0 12px;
    font-weight: 600;
}

.page-info {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-info .total-count strong {
    color: #FFA702;
    font-weight: 600;
}

.page-info .page-number {
    color: rgba(255, 255, 255, 0.5);
}

/* 상단 액션 버튼 */
.list-actions {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-end;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-secondary,
.btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 167, 2, 0.5);
}

.btn-danger {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.btn-danger:hover {
    background: rgba(244, 67, 54, 0.3);
    border-color: rgba(244, 67, 54, 0.5);
}

/* 목록 테이블 */
.list-table-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.list-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.list-table thead {
    background: rgba(26, 84, 144, 0.3);
}

.list-table thead th {
    padding: 16px 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 167, 2, 0.3);
}

.list-table thead th a {
    color: #ffffff;
    text-decoration: none;
}

.list-table thead th a:hover {
    color: #FFA702;
}

.list-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
}

.list-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.list-table tbody td {
    padding: 16px 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    vertical-align: middle;
}

/* 컬럼별 스타일 */
.col-checkbox {
    width: 40px;
    text-align: center;
}

.col-num {
    width: 60px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.col-regno {
    width: 160px;
}

.reg-number {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(26, 84, 144, 0.2);
    border: 1px solid rgba(26, 84, 144, 0.4);
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 600;
    color: #4FC3F7;
}

.col-name {
    min-width: 150px;
}

.name-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.name-link:hover {
    color: #FFA702;
}

.new-badge {
    display: inline-block;
    padding: 2px 6px;
    background: #FFA702;
    color: #0a1628;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 6px;
    text-transform: uppercase;
}

.abstract-info {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.abstract-info i {
    color: #FFA702;
    font-size: 14px;
}

.col-email {
    min-width: 180px;
    color: rgba(255, 255, 255, 0.8);
}

.col-job {
    width: 140px;
}

.job-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 167, 2, 0.15);
    border: 1px solid rgba(255, 167, 2, 0.3);
    border-radius: 4px;
    font-size: 12px;
    color: #FFA702;
}

.col-file {
    width: 80px;
    text-align: center;
}

.file-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 4px;
    font-size: 12px;
    color: #f44336;
}

.file-badge i {
    font-size: 14px;
}

.no-file {
    color: rgba(255, 255, 255, 0.3);
}

.col-datetime {
    width: 140px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* 빈 테이블 */
.empty-table {
    padding: 60px 20px !important;
    text-align: center;
}

.empty-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.empty-message i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
}

.empty-message p {
    margin: 0;
    font-size: 16px;
}

/* 페이지네이션 */
.pagination-wrapper {
    margin: 30px 0;
    text-align: center;
}

/* 검색 */
.search-wrapper {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 167, 2, 0.5);
}

.search-form {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: none;
}

.search-form.active {
    display: block;
}

.search-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-select {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    min-width: 120px;
}

.search-select option {
    background: #1a5490;
    color: #ffffff;
}

.search-input {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    outline: none;
    border-color: #FFA702;
    background: rgba(255, 255, 255, 0.15);
}

.search-submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: #FFA702;
    border: none;
    border-radius: 6px;
    color: #0a1628;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-submit:hover {
    background: #ff9500;
    transform: translateY(-1px);
}

/* 반응형 */
@media (max-width: 1024px) {
    .list-table {
        font-size: 13px;
    }
    
    .list-table thead th,
    .list-table tbody td {
        padding: 12px 8px;
    }
    
    .col-regno {
        width: 140px;
    }
    
    .reg-number {
        font-size: 12px;
        padding: 3px 8px;
    }
}

@media (max-width: 768px) {
    .page-header h2 {
        font-size: 22px;
    }
    
    .list-table-wrapper {
        overflow-x: auto;
    }
    
    .list-table {
        min-width: 800px;
    }
    
    .search-row {
        flex-direction: column;
    }
    
    .search-select,
    .search-input,
    .search-submit {
        width: 100%;
    }
}

