:root {
  --bg: #f3f5f7;
  --ink: #111827;
}

* { font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

.bg-sober { background: var(--bg); color: var(--ink); }

.app-shell { height: calc(100vh - 56px); } /* navbar aprox */
.left-panel { height: 100%; }
.right-panel { height: 100%; overflow: auto; }

.clients-scroll {
  height: calc(100vh - 56px - 72px); /* navbar + header panel */
  overflow-y: auto;
}

.client-item-ok { background: #f6fffa; }
.client-item-pending { background: #fffaf0; }

.list-group-item.active {
  background: #111827 !important;
  border-color: #111827 !important;
}
.list-group-item.active .text-muted { color: rgba(255,255,255,.65) !important; }

.clients-scroll{
  font-size: 0.8rem;
}

