.toggle-bar {
  display: inline-flex;
  gap: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}

.toggle-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #555;
  position: relative;
  transition: color 0.25s ease;
}

.toggle-bar span {
    font-size: 14px;
}

.toggle-option input[type="radio"] {
  /* Make radio bigger and visible */
  width: 22px;
  height: 22px;
  margin-right: 12px;
  cursor: pointer;
  accent-color: #0f172a   ;
  transition: box-shadow 0.25s ease;
  border-radius: 50%;
}


/* Label text color changes if checked */
.toggle-option input[type="radio"]:checked + span {
  color: #0f172a  ;
  font-weight: 700;
}



/* Smooth text scaling on checked */
.toggle-option input[type="radio"]:checked + span {
  transform: scale(1.05);
  transition: transform 0.25s ease;
}
