/* =============================================
   급여관리 페이지 - Salary-specific styles only
   (hrm-stat / e-card / e-table / hrm-filter
    styles are provided by dashboard.css & components.css)
   ============================================= */

/* ── 4-column KPI grid override ── */
.sal-stats-4col {
  grid-template-columns: repeat(4, 1fr);
}

/* ── 금액 셀 ── */
.sal-amount {
  font-family: 'Courier New', monospace;
  font-size: .82rem;
  white-space: nowrap;
}

.sal-net {
  font-weight: 700;
  color: rgba(255,255,255,.95);
}

.sal-deduct {
  color: #f87171;
}

.sal-name {
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

/* ── 반응형 ── */
@media (max-width: 1200px) {
  .sal-stats-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sal-stats-4col {
    grid-template-columns: 1fr;
  }
}
