/* PeopleDo v2: Phase 1 dashboard additions
 *
 * Linked from public/index.html. Owns the styling for the new "Reminder
 * Intensity" radio group in household settings and the member-overlay's
 * Push Targets section.
 */

.intensity-group .intensity-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 0.45rem;
}

.intensity-option {
  display: block;
  padding: 0.7rem 0.9rem 0.75rem;
  border-radius: 10px;
  background: var(--bg-surface, #1a2040);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
  padding-left: 2.4rem;
}

.intensity-option:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.intensity-option.selected {
  border-color: var(--accent-green, #4ecca3);
  background: rgba(78, 204, 163, 0.08);
}

.intensity-option input[type="radio"] {
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-green, #4ecca3);
}

.intensity-option .intensity-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text, #e8e6e3);
  margin-bottom: 0.25rem;
}

.intensity-option .intensity-desc {
  font-size: 0.85rem;
  color: var(--text-muted, #7a8599);
  line-height: 1.35;
}

@media (min-width: 700px) {
  .intensity-group .intensity-options {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Push target toggles in member overlay reuse v1's .toggle-row class but
 * the hint text is a bit long for the existing layout. */
#member-notifications-group .toggle-row {
  align-items: flex-start;
  padding-top: 0.4rem;
}

#member-notifications-group .toggle-row .toggle-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted, #7a8599);
  margin-left: 0.4rem;
  line-height: 1.3;
}
