/* ============================================================
   scale-rating.css — Scale rating interaction styles
   ============================================================ */

.sr-container {
  width: 100%; display: flex; flex-direction: column;
  gap: 6px; user-select: none;
}
.sr-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 4px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.sr-row-left {
  display: flex; align-items: center; gap: 8px;
  min-width: 110px; max-width: 130px; flex-shrink: 0;
}
.sr-row-img {
  width: 40px; height: 40px; object-fit: contain;
  border-radius: 8px; background: rgba(255,255,255,0.06); flex-shrink: 0;
}
.sr-row-placeholder {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: rgba(255,255,255,0.5); flex-shrink: 0;
}
.sr-row-label {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sr-row-right { flex: 1; display: flex; align-items: center; gap: 8px; min-width: 0; }
.sr-dial      { flex: 1; display: flex; align-items: center; gap: 6px; min-width: 0; }
.sr-emoji     { font-size: 18px; flex-shrink: 0; line-height: 1; opacity: 0.75; }

/* ── Tap circles (replaces slider) ───────────────────────────────────────── */

.sr-circles {
  flex: 1; display: flex; align-items: center;
  gap: 4px; justify-content: space-between; min-width: 0;
}
.sr-circle {
  flex: 1; max-width: 44px; min-width: 26px;
  aspect-ratio: 1; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  font-size: 12px; font-weight: 700;
  cursor: pointer;
  transition: background 0.13s ease, border-color 0.13s ease,
              color 0.13s ease, transform 0.13s ease, box-shadow 0.13s ease;
  display: flex; align-items: center; justify-content: center;
  padding: 0; outline: none;
  -webkit-tap-highlight-color: transparent;
}
.sr-circle:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  transform: scale(1.1);
}
.sr-circle:active { transform: scale(0.97); }
.sr-circle.selected {
  background: var(--sr-color, #00c9b1);
  border-color: var(--sr-color, #00c9b1);
  color: #fff; font-weight: 800;
  transform: scale(1.18);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

/* ── Selected value label ────────────────────────────────────────────────── */

.sr-sel-label {
  font-size: 11px; font-weight: 700; min-width: 64px;
  white-space: nowrap; color: rgba(255,255,255,0.4);
  transition: color 0.12s ease; flex-shrink: 0; text-align: left;
}
