/* Global tweaks */
body { -webkit-font-smoothing: antialiased; }

/* Dashboard cards */
.dash-card {
  border: 0;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .12s ease, box-shadow .12s ease;
}
.dash-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
.dash-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(0, 85, 170, .08);
  color: var(--brand);
  font-size: 1.4rem;
}

/* Tables */
.table { --bs-table-striped-bg: rgba(0,0,0,.02); }
.table td, .table th { vertical-align: middle; }

/* Forms */
.form-control, .form-select { border-radius: .6rem; }
.btn { border-radius: .6rem; }

/* Cards in inner pages */
.card { border: 0; border-radius: 1rem; box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.card .table { margin-bottom: 0; }

/* Mobile helpers */
@media (max-width: 576px){
  .navbar .navbar-brand { font-size: 1rem; }
  .dash-icon { width: 42px; height: 42px; font-size: 1.2rem; }
}
