:root{
  --bg0:#050814;
  --panel:#0b1220;
  --panel2:#0e1730;
  --border:#1f2a44;
  --text:#e5e7eb;
  --muted:#9ca3af;
}

/* Strong dark base + very subtle cold glow (does NOT wash out) */
body{
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(96,165,250,0.10), transparent 60%),
    radial-gradient(700px 420px at 85% 15%, rgba(167,139,250,0.08), transparent 55%),
    var(--bg0);
  color: var(--text);
}

/* Opaque cards for readability */
.ca-card{
  background: rgba(11,18,32,0.98);
  border: 1px solid rgba(31,42,68,0.95);
  box-shadow: 0 0 0 1px rgba(31,42,68,.6), 0 14px 34px rgba(0,0,0,.45);
}

/* Chips */
.ca-chip{
  border: 1px solid rgba(31,42,68,0.95);
  background: rgba(5,8,20,0.85);
}

/* Inputs (slightly nicer) */
input, textarea, select{
  color: var(--text);
}

/* Focus ring */
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.55);
  border-radius: 14px;
}



.ca-avatar{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:9999px;
  background: rgba(5,8,20,0.85);
  border: 1px solid rgba(31,42,68,0.95);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
}
.ca-row:hover{ background: rgba(255,255,255,0.03); }



/* Calendar */
.ca-cal-grid{ display:grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap:10px; }
.ca-cal-cell{ min-height: 110px; }
.ca-cal-day{ font-size:12px; color: rgba(226,232,240,.7); }
.ca-cal-num{ font-weight:700; }
.ca-cal-today{ outline: 2px solid rgba(99,102,241,.55); outline-offset: 2px; }



.ca-verified{
  display:inline-flex;
  align-items:center;
  gap:.3rem;
  padding:.2rem .55rem;
  border-radius:9999px;
  font-size:11px;
  font-weight:700;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  color: rgba(191,219,254,1);
}
.ca-avatar-img{
  width:32px;height:32px;border-radius:9999px;object-fit:cover;
  border:1px solid rgba(255,255,255,0.14);
}
