:root{
  --primary: #020b72;
  --accent: #ff6d00;
  --white: #ffffff;
}
body{font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;}
.btn-primary{background:var(--primary);border-color:var(--primary)}
.btn-primary:hover{background:#06128e}
.card{border-radius:10px}
.table thead{background:var(--primary);color:var(--white)}
.brand-accent{color:var(--accent)}

.employee-photo{width:96px;height:96px;object-fit:cover;border-radius:6px;border:1px solid #ddd}

.table-responsive{overflow-x:auto}

.status-badge{display:inline-block;padding:.25rem .65rem;font-size:.8rem;font-weight:600;border-radius:999px;color:#fff}
.status-badge.active{background:#198754}
.status-badge.retired{background:#6c757d}
.status-badge.transferred{background:#0d6efd}
.status-badge.resigned{background:#fd7e14}
.status-badge.terminated{background:#dc3545}

@media (max-width:768px){
  .employee-photo{width:72px;height:72px}
}
