/**
 * WFOPS layout.css
 * header, main, footer, bottom-nav, container
 * 점진 이전용 - 기존 common.css와 병행
 */

:root {
  --wfops-header-height: 52px;
  --wfops-footer-height: 44px;
  --wfops-bottom-nav-height: 56px;
  --wfops-container-max: 720px;
}

/* --- Container --- */
.wfops-container {
  max-width: var(--wfops-container-max);
  margin: 0 auto;
  padding: 0 16px;
}

/* --- Header (선택 적용용, 기존 header 유지) --- */
.wfops-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--wfops-header-height);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  background: #3372f0;
  color: #fff;
  border-bottom: 1px solid #2a61d4;
}

/* --- Main --- */
.wfops-main {
  padding: 8px;
  min-height: 0;
}

/* --- Footer --- */
.wfops-footer {
  font-size: 0.9rem;
  color: #666;
  padding: 8px;
  border-top: 1px solid #ccc;
}

/* --- Bottom Nav --- */
.wfops-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: var(--wfops-bottom-nav-height);
  background: #fff;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  padding: 6px 4px;
}

.wfops-bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 4px;
  text-decoration: none;
  color: #666;
  font-size: 12px;
}

.wfops-bottom-nav-item:hover { color: #111; }
.wfops-bottom-nav-item.active { color: #1E74FF; }
