/* Radio buttons */
[type='radio']:checked,
[type='radio']:not(:checked) {
  left: -9999px;
}

[type='radio']:checked+label,
[type='radio']:not(:checked)+label {
  position: relative;
  padding-left: 34px;
  cursor: pointer;
  line-height: 26px;
  display: inline-block;
  color: #1b1b1b;
}

[type='radio']:checked+label:before,
[type='radio']:not(:checked)+label:before {
  box-sizing: content-box !important;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #494949;
  border-radius: 100%;
  background: #fff;
}

[type='radio']:checked+label:after,
[type='radio']:not(:checked)+label:after {
  box-sizing: content-box !important;
  content: '';
  width: 18px;
  height: 18px;
  background: #2196f3;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type='radio']:not(:checked)+label:after {
  box-sizing: content-box !important;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type='radio']:checked+label:after {
  box-sizing: content-box !important;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Estilos para inputs de edad de niños */
.child-age-container {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
}

.child-age-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.child-age-container select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
}

.child-age-container select:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
}