.options-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.strength-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.strength-option:hover {
  background: #e9ecef;
  transform: translateX(4px);
}

.strength-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.strength-option span {
  flex: 1;
  font-size: 1rem;
  color: #2c3e50;
  cursor: pointer;
}

.strength-option:has(input[type="radio"]:checked) {
  background: #e8f0fe;
  border-left: 4px solid #27ae60;
}
