.ept-container { width: 100%; font-family: 'Noto Sans KR', sans-serif; color: #333; margin: 20px 0; box-sizing: border-box; }

/* m002 상단 헤더 영역 */
.ept-header-area { margin-bottom: 25px; }
.ept-header-area .ept-main-title { margin: 0 0 12px 0; font-weight: 700; text-align: left; }
.ept-header-area .ept-subtext { margin: 0 0 6px 0; line-height: 1.6; }
.ept-header-area .ept-hltext { margin: 0; line-height: 1.6; font-weight: 600; }

/* 관리자 패널 Layout */
.ept-admin-panel { background: #f1f5f9; padding: 15px; border: 1px solid #cbd5e1; margin-bottom: 20px; border-radius: 6px; }
.ept-admin-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; }
.ept-admin-row form { display: flex; align-items: center; gap: 8px; }
.ept-admin-panel label { font-size: 13px; }

/* 버튼 디자인 */
.ept-btn { background: #004085; color: #ffffff; border: none; padding: 6px 14px; cursor: pointer; border-radius: 4px; font-weight: bold; font-size: 13px; }
.ept-btn:hover { background: #002752; }
.ept-btn-secondary { background: #475569; }
.ept-btn-secondary:hover { background: #1e293b; }
#ept-upload-msg { margin-top: 10px; font-weight: bold; font-size: 13px; text-align: center; }

/* 탭 디자인 */
.ept-tabs { display: flex; list-style: none; padding: 0; margin: 0 0 15px 0; border-bottom: 2px solid #00338d; }
.ept-tab-item {
    flex: 1; text-align: center; padding: 12px 10px; background: #ffffff; 
    border: 1px solid #e2e8f0; border-bottom: none; font-weight: 600; font-size: 14px; cursor: pointer;
    color: #475569; transition: background-color 0.25s ease, color 0.25s ease;
}
.ept-tab-item:hover { background: #2563eb; color: #ffffff; }
.ept-tab-item.active { background: #00338d; color: #ffffff; border-color: #00338d; }

/* 일자 및 검색창 디자인 */
.ept-header-tools {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-bottom: 12px !important;
    box-sizing: border-box !important;
}

.ept-info {
    color: #1e40af;
    font-size: 14px;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ept-dot {
    color: #3b82f6;
    margin-right: 4px;
}

.ept-search-box {
    display: flex !important;
    gap: 4px !important;
    margin-left: auto !important;
}

.ept-search-box select, 
.ept-search-box input {
    border: 1px solid #ccc !important;
    padding: 6px 10px !important;
    font-size: 13px !important;
    height: 36px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.ept-search-box button {
    background: #334155 !important;
    color: #fff !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

/* 테이블 레이아웃 통일 (table-layout: fixed) */
.ept-tab-content { display: none; }
.ept-tab-content.active { display: block; }

.ept-table { 
    width: 100%; 
    border-collapse: collapse; 
    font-size: 13px; 
    table-layout: fixed !important; /* 모든 탭 간 통일감 유지 */
}

.ept-table th { background: #f8fafc; border-top: 2px solid #1e293b; border-bottom: 1px solid #cbd5e1; padding: 10px; font-weight: bold; text-align: center; }
.ept-table td { border-bottom: 1px solid #e2e8f0; padding: 10px; border-right: 1px solid #f1f5f9; word-break: break-all; }

/* 컬럼별 너비 지정 규칙 */
.ept-table th.col-width-name { width: 40%; }
.ept-table th.col-width-code { width: 15%; }
.ept-table th.col-width-price { width: 20%; }
.ept-table th.col-width-etc { width: 25%; }

/* 데이터 정렬 규칙 */
.ept-table td.align-center { text-align: center; }
.ept-table td.align-left { text-align: left; }
.ept-table td.align-right { text-align: right; }

/* m002 벤치마킹 하단 NOTICE 스타일 */
.ept-bottom-notice {
    margin-top: 35px;
    padding: 20px 24px;
    border-radius: 6px;
}
.ept-notice-head {
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ept-notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ept-notice-list li {
    margin-bottom: 6px;
    line-height: 1.5;
}
.ept-notice-list li:last-child {
    margin-bottom: 0;
}

/* 모바일 반응형 처리 */
@media (max-width: 768px) {
    .ept-header-tools {
        flex-direction: column !important;
        align-items: flex-end !important;
        gap: 10px !important;
    }
    .ept-info {
        width: 100% !important;
        text-align: right !important;
    }
    .ept-search-box {
        width: 100% !important;
        justify-content: flex-end !important;
    }
    .ept-search-box input {
        flex: 1;
    }
}