/* --- Estilos para las opciones personalizadas dentro de los selects --- */
/* Comentario: Estilos para las opciones dentro de los selects personalizados */

.custom-option1 {
  padding: 12px 16px;
  font-size: 14px;
  color: #4b4b4b;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  background-color: #ffffff;
  transition: all 0.2s ease;
  font-family: var(--font-family);
}

.custom-option1:hover {
  background-color: #f5f5f5;
  color: #ff4e00;
}

.custom-option1:last-child {
  border-bottom: none;
}

/* Estilos para las opciones de los selects nativos (como respaldo) */
select.form-control option {
  background-color: #ffffff;
  color: #4b4b4b;
  font-size: 14px;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
}

/* Estilos para las opciones cuando se hace hover en selects nativos */
select.form-control option:hover {
  background-color: #f5f5f5;
  color: #ff4e00;
}

/* Estilos para las opciones seleccionadas en selects nativos */
select.form-control option:checked {
  background-color: #ff4e00;
  color: #ffffff;
  font-weight: 600;
}

/* Estilos para las opciones cuando se hace focus en selects nativos */
select.form-control option:focus {
  background-color: #f0f0f0;
  color: #ff4e00;
} 

.location-info-text

 {
    font-size: 14px;
    margin-bottom: 1.5em;
    font-weight: 600;
    margin-top: -1.5em;
    padding: 1em; } 
.contenedor-seleccion-manual{
  border-radius: 4px;
    display: flex
;
    padding: -4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: start;
    background: #f0efed;
    width: 100%;
    display: block;
    cursor: pointer;
    transition: all 0.2s ease;
}
.nota-informativa {
  background-color: #f2f3f2;
  padding: 1.5em;
  margin: 2em 0;
  font-size: 16px;
  color: #333;
  border-radius: 4px;
  line-height: 1.6;
  text-align: justify;
}
