/* ── General ─────────────────────────────────────────────────────────────── */
body {
  background-color: #f4f6f9;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

main {
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  padding: 0.6rem 1.5rem;
}

/* ── KPI / Summary cards ─────────────────────────────────────────────────── */
.card .fs-1,
.card .fs-2 {
  line-height: 1.1;
}

/* ── Table ───────────────────────────────────────────────────────────────── */
#shareholders-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  white-space: nowrap;
}

#shareholders-table tbody tr {
  transition: background-color 0.25s ease;
}

/* ── Attendance buttons ──────────────────────────────────────────────────── */
.att-btn {
  transition: all 0.15s ease;
  min-width: 72px;
}

.att-btn:focus {
  box-shadow: none;
}

/* ── Pagination ──────────────────────────────────────────────────────────── */
.pagination .page-link {
  color: #0d6efd;
}
.pagination .page-item.active .page-link {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

/* ── Charts ──────────────────────────────────────────────────────────────── */
canvas {
  max-height: 340px;
}
