/* ── General ─────────────────────────────────────────────────────────────────── */
body {
  background-color: #f8f9fa;
}

/* ── Navbar ──────────────────────────────────────────────────────────────────── */
.navbar {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* ── Tabs ────────────────────────────────────────────────────────────────────── */
#main-tabs .nav-link {
  color: #495057;
  border-bottom: 2px solid transparent;
}

#main-tabs .nav-link.active {
  color: #0d6efd;
  font-weight: 600;
  border-bottom-color: #0d6efd;
}

/* ── Cards ───────────────────────────────────────────────────────────────────── */
.card {
  border-radius: 10px;
}

/* ── Assignment result card ──────────────────────────────────────────────────── */
.assignment-result {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 1px solid #a5d6a7;
  border-radius: 10px;
}

/* ── Person badge in assignment result ───────────────────────────────────────── */
.assigned-person-badge {
  font-size: 1rem;
  padding: 0.4em 0.8em;
}

/* ── Counter table ───────────────────────────────────────────────────────────── */
.counter-table th,
.counter-table td {
  vertical-align: middle;
}

.counter-min {
  background-color: #d1fae5;
  font-weight: 700;
}

.counter-max {
  background-color: #fee2e2;
}

/* ── Empty state placeholder ─────────────────────────────────────────────────── */
.empty-state {
  color: #adb5bd;
}

/* ── Spinner overlay ─────────────────────────────────────────────────────────── */
.tab-loading {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Inline edit row ─────────────────────────────────────────────────────────── */
.list-group-item:hover .item-actions {
  opacity: 1;
}

.item-actions {
  opacity: 0;
  transition: opacity 0.15s;
}

/* ── History table ───────────────────────────────────────────────────────────── */
.history-table td {
  vertical-align: middle;
}
