/* ── Geral ─────────────────────────────────────────── */
body {
  background: #f0f2f5;
  color: #1a1a2e;
}

/* ── Login ─────────────────────────────────────────── */
.login-page {
  background: linear-gradient(135deg, #1a2a4a 0%, #2c4a7c 100%);
}
.login-page .card {
  border-radius: 16px;
}

/* ── Cards de funcionários ─────────────────────────── */
.employee-card {
  border-radius: 12px;
  transition: transform .15s, box-shadow .15s;
  cursor: default;
}
.employee-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.1) !important;
}

/* ── Navbar ────────────────────────────────────────── */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

/* ── Tabelas ───────────────────────────────────────── */
.table > :not(caption) > * > * {
  padding: .45rem .6rem;
}

/* ── Badges Bootstrap 5.3 subtle fix ──────────────── */
.bg-primary-subtle { background-color: #dbeafe !important; }
.bg-success-subtle { background-color: #dcfce7 !important; }
.bg-warning-subtle { background-color: #fef9c3 !important; }
.bg-danger-subtle  { background-color: #fee2e2 !important; }
.bg-info-subtle    { background-color: #e0f2fe !important; }
.bg-secondary-subtle { background-color: #f1f5f9 !important; }

.text-primary { color: #1a2a4a !important; }

/* ── Botões ────────────────────────────────────────── */
.btn-primary {
  background: #1a2a4a;
  border-color: #1a2a4a;
}
.btn-primary:hover {
  background: #243d6e;
  border-color: #243d6e;
}
.btn-outline-primary {
  color: #1a2a4a;
  border-color: #1a2a4a;
}
.btn-outline-primary:hover {
  background: #1a2a4a;
  border-color: #1a2a4a;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #c0cfe0; border-radius: 3px; }
