:root {
  --brand: #0d6efd;
  --brand-dark: #0b5ed7;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f5f7fb;
}

/* Login page */
.bg-login {
  background: linear-gradient(135deg, #1e3a8a 0%, #0d6efd 60%, #4dabf7 100%);
  min-height: 100vh;
}

.login-logo {
  width: 64px;
  height: 64px;
  background: var(--brand);
  border-radius: 16px;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.login-logo::before { content: "\1F4E6"; }

/* Cards do dashboard */
.stat-card {
  border: 0;
  border-radius: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}
.stat-card .stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.stat-jt   { background: #fff5e6; color: #d97706; }
.stat-anjun{ background: #e6f4ff; color: #0d6efd; }
.stat-fin  { background: #e6fff0; color: #15803d; }
.stat-user { background: #f3e8ff; color: #7c3aed; }

/* Table improvements */
.table-modern thead th {
  background: #f8f9fa;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #6c757d;
  font-weight: 600;
}
.table-modern td { font-size: .9rem; vertical-align: middle; }

/* Empresa badge */
.badge-jt    { background: #f59e0b; }
.badge-anjun { background: #0ea5e9; }
