/* Call Cost Explorer — tool-specific overrides only */

/* If your Tool 1 HTML uses .card-body, keep this for padding parity */
.card-body{
  padding: 0 18px 18px;
}

/* Results rows (Call Cost Explorer only) */
.resultRow{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px;
  margin-top: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.resultLabel{
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.resultValue{
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

/* Optional cost assumptions (dark-safe) */

.assumptions-box {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.assumptions-box summary {
  font-weight: 600;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
}

.assumptions-box[open] summary {
  margin-bottom: 10px;
}

.assumptions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.assumptions-grid label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.assumptions-grid input,
.assumptions-grid select {
  width: 100%;
  margin-top: 4px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.result-note{
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.warning-note{
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 196, 0, 0.08);      /* subtle amber tint, not “yellow bar” */
  border: 1px solid rgba(255, 196, 0, 0.18);
}

/* Hard guarantee: hidden means hidden (no layout artifacts) */
[hidden]{
  display: none !important;
}

