/* ── Agent Roster Panel ─────────────────────────────────────────────────── */
.cc-roster {
  background: #040c18;
  border: 1px solid #1e3a5f;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.cc-roster-title {
  font-size: .75rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}
.cc-roster-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.cc-roster-control-label {
  font-size: .68rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Agent Cards ────────────────────────────────────────────────────────── */
.cc-agent-card {
  background: #030d1a;
  border: 1px solid #0d2035;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.cc-agent-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}
.cc-agent-card-name {
  font-size: .8rem;
  font-weight: 700;
  color: #e2e8f0;
}
.cc-agent-card-backstory {
  font-size: .65rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cc-agent-del-btn {
  font-size: .65rem;
  color: #1e3a5f;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.cc-agent-del-btn:hover { color: #f87171; }

/* ── Domain Tags ────────────────────────────────────────────────────────── */
.cc-agent-domains-title {
  font-size: .6rem;
  font-weight: 700;
  color: #1e3a5f;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 6px;
}
.cc-agent-domain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cc-agent-domain-tag {
  display: inline-flex;
  align-items: center;
  font-size: .6rem;
  color: #475569;
  background: #030d1a;
  border: 1px solid #1e3a5f;
  border-radius: 4px;
  padding: 2px 8px;
  cursor: pointer;
  transition: background .12s, border-color .12s, color .12s;
  user-select: none;
}
.cc-agent-domain-tag:hover { color: #94a3b8; border-color: #94a3b8; }
.cc-agent-domain-tag--active {
  background: #0a2038;
  border-color: #06b6d4;
  color: #06b6d4;
}

/* ── Add Agent Button ───────────────────────────────────────────────────── */
.cc-roster-add-btn {
  width: 100%;
  background: none;
  border: 1px dashed #1e3a5f;
  border-radius: 8px;
  color: #475569;
  font-size: .7rem;
  padding: 10px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  margin-top: 6px;
  font-family: inherit;
}
.cc-roster-add-btn:hover { color: #94a3b8; border-color: #475569; }
.cc-roster-full-note {
  font-size: .6rem;
  color: #1e3a5f;
  text-align: center;
  margin-top: 8px;
}
.cc-roster-empty {
  font-size: .7rem;
  color: #475569;
  text-align: center;
  padding: 14px 0 6px;
}
