/* 세션 역할이 붙기 전에 관리자 뼈대가 보이지 않게 */
body:not(.admin-mode):not(.staff-mode)>header,
body:not(.admin-mode):not(.staff-mode)>.shell{visibility:hidden}

/* 직원 폼 — 그리드 칸이 내용물 최소 폭보다 작아지지 않게 */
.form-group{min-width:0}
.form-group input[type=date],
.form-group input[type=month]{
  min-width:0;max-width:100%;box-sizing:border-box;
}

/* 사파리 날짜칸이 이메일칸보다 높아 모서리가 어깃나는 것 방지 */
@media (max-width:760px){
  .form-row,
  .rate-row{grid-template-columns:1fr}
  #emp-form-host .modal-actions{justify-content:stretch}
  #emp-form-host .modal-emp-tools{display:flex;flex-wrap:wrap;gap:var(--space-2);width:100%}
  #emp-form-host .modal-actions>button{flex:1 1 calc(50% - 8px)}
}
