/* ==========================================================
   012_organization.css
   실험안전실 조직도 페이지 전용 스타일
   - 인원 테이블 컬럼 폭 조정
     · 이름·담당: 한 줄 유지 (nowrap + 충분한 폭)
     · 주요 업무: 긴 텍스트라 폭 축소하되 wrap 허용
   ========================================================== */

.table .col-name  { width: 10%; }
.table .col-role  { width: 22%; }
.table .col-duty  { width: 48%; }
.table .col-email { width: 20%; }

/* 이름·담당 칸은 한 줄로 강제 (줄바꿈 방지) */
.table .col-name,
.table .col-role {
  white-space: nowrap;
}

/* thead/tbody 셀에도 동일 정렬 보장 */
.table th.col-name,
.table td.col-name,
.table th.col-role,
.table td.col-role {
  white-space: nowrap;
}

/* 반응형: 모바일에서 이메일 컬럼 폭 확장, 업무 컬럼 조정
   (표 자체는 table-wrap 수평 스크롤로 처리 — 560px 기준 유지) */
@media (max-width: 767px) {
  .table .col-email { width: 30%; }
  .table .col-duty  { width: 38%; }
}
