/* Lightweight, mobile-first styling */
:root{
  --app-bg: #0b1220;
  --card-bg: #111a2e;
  --card-border: rgba(255,255,255,.08);
  --text-soft: rgba(255,255,255,.75);
  --accent: #22c55e;
  --accent2: #0ea5e9;
}

.app-body{
  background: radial-gradient(1200px 600px at 100% 0%, rgba(14,165,233,.15), transparent 60%),
              radial-gradient(1000px 500px at 0% 0%, rgba(34,197,94,.12), transparent 55%),
              var(--app-bg);
  min-height: 100vh;
}

.brand-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display:inline-block;
}

.card-app{
  background: rgba(17,26,46,.92);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.card-app .card-header{
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.badge-soft{
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.10);
}

.text-soft{ color: var(--text-soft); }

.btn-call{
  border-radius: 14px;
  font-weight: 600;
}

.table thead th{
  white-space: nowrap;
}

.form-control, .form-select{
  border-radius: 12px;
}

.btn, .input-group-text{
  border-radius: 12px;
}

.note-preview{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.client-card{
  transition: transform .12s ease, box-shadow .12s ease;
}
.client-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.30);
}

.kpi{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(17,26,46,.75);
  border-radius: 16px;
  padding: 14px;
}

.kpi .kpi-value{
  font-size: 1.7rem;
  font-weight: 800;
}

.kpi .kpi-label{
  color: rgba(255,255,255,.70);
  font-size: .9rem;
}

hr.soft{
  border-color: rgba(255,255,255,.08);
}

.small-muted{
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}

.call-chip{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.call-chip a{
  color: #fff;
  text-decoration: none;
}

.card-actions{
  display:flex;
  gap:.5rem;
  flex-wrap: wrap;
}

@media (max-width: 576px){
  .card-actions .btn{
    flex: 1 1 auto;
  }
}
