.settings-section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: 28px 0 8px;
  padding: 0 4px;
}

.notif-group {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.notif-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}
.notif-row:last-child {
  border-bottom: none;
}

.notif-row-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.notif-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.notif-row-info h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 2px;
}
.notif-row-info p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* Toggle switch */
.toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
  margin-left: 12px;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-track {
  position: absolute;
  inset: 0;
  background-color: var(--color-border);
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.toggle-track::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle input:checked + .toggle-track {
  background-color: var(--color-blue);
}
.toggle input:checked + .toggle-track::before {
  transform: translateX(20px);
}

.save-feedback {
  display: none;
  margin-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
