html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Removed conflicting styles - using Tailwind CSS classes instead */

.numerical-scale-container {
  max-width: 500px;
  margin: 30px auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.scale-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  position: relative;
}

.scale-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.scale-option input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: #007bff;
}

.scale-option label {
  margin-top: 8px;
  font-weight: 500;
  color: #495057;
  cursor: pointer;
  font-size: 14px;
}

.scale-option input[type="radio"]:checked + label {
  color: #007bff;
  font-weight: 600;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
}

/* Add connecting line between radio buttons */
.scale-options::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 1px;
  background-color: #dee2e6;
  z-index: 1;
}

.scale-option {
  z-index: 2;
  background: #f8f9fa;
  padding: 0 5px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}