@charset "utf-8";
/* CSS Document */
/*.select-estilizado {
  width: 100%;
  padding: 5px;
  border: 2px solid #3498db;
  border-radius: 5px;
  background-color: white;
  color: #333;
  font-size: 12px;
  appearance: none; 
  -webkit-appearance: none;
  cursor: pointer;
}*/

/* Flecha personalizada */
.contenedor-select::after {
  content: '▼';
  position: absolute;
  right: 11px;
  top: 55%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #3498db;
}

.contenedor-select { 
  position: relative;
  width: 200px;  
	border: 2px solid #3498db;
	border-radius: 5px;
	padding: 7px;
	background-color: white;
	color: #333;
    font-size: 15px !important;
	/*appearance: none; /* Elimina estilos nativos */
  -webkit-appearance: none;
  cursor: pointer;
	height: auto;
	
}
.select2-container--default .select2-selection__rendered {
    color: #333;
}

/* Estilo para las opciones desplegables */
.select2-results__option {
    color: #555;
}

