/* Sprint 12.2 — Billing */
.tools-billing-modal .tools-billing-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.billing-kv {
  margin-bottom: 8px;
}

.billing-usage {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.billing-usage-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--texto-base, #334155);
}

.billing-meter {
  height: 6px;
  border-radius: 999px;
  background: var(--gris-200, #e2e8f0);
  overflow: hidden;
}

.billing-meter__fill {
  height: 100%;
  background: linear-gradient(90deg, #64748b 0%, #334155 100%);
  border-radius: 999px;
}

.billing-plans-host {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}

.billing-plan-card {
  padding: 10px;
  border: var(--borde-fino, 1px solid #cbd5e1);
  border-radius: 10px;
  background: var(--gris-0, #fff);
}

.billing-plan-card--current {
  border-color: var(--gris-400, #94a3b8);
  box-shadow: var(--manto-serio-panel-drop, 0 2px 8px rgba(15, 23, 42, 0.08));
}

.billing-plan-card__tit {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--texto-fuerte, #0f172a);
}

.billing-plan-card__list {
  margin: 0 0 10px;
  padding-left: 16px;
  font-size: 11px;
  color: var(--texto-suave, #64748b);
}

.billing-plan-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--texto-suave, #64748b);
}

.billing-plan-select {
  width: 100%;
  min-height: 32px;
}

.billing-actions {
  margin-top: 8px;
}
