/* --- New: Range slider display --- */
#amount-display {
  font-weight: bold;
  display: inline-block;
  margin-left: 0.5rem;
  color: #0d6efd;
}

/* --- New: Input[type=range] --- */
input[type="range"] {
  width: 100%;
  appearance: none;
  height: 8px;
  background: #dce5ff;
  border-radius: 4px;
  outline: none;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #0d6efd;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #0b5ed7;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #0d6efd;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* --- Optional: Read-only age field dimmed --- */
input[readonly] {
  background-color: #f8f9fa;
  cursor: not-allowed;
}

/* --- Optional: Spacing between label + display inline elements --- */
label span {
  margin-left: 0.5rem;
  font-size: 1rem;
}
