.center {
  text-align: center;
}

.price {
  background-color: #00aeef;
  color: white;
  text-align: center;
  margin-top: 10px;
  border-radius: 10px;
}

.schedule-results-container {
  margin-top: 20px;
}

.schedule-result {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.schedule-result-header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.route-info {
  display: flex;
  align-items: center;
}

.route-logo {
  width: 30px;
  height: auto;
  margin-right: 30px;
}

.route-headsign {
  font-weight: bold;
}

.times {
  text-align: right;
}

.departure-time, .arrival-time {
  font-size: 1.5em;
  font-weight: bold;
}

.duration {
  margin: 0 10px;
}

.schedule-result-body {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.origin, .destination, .route {
  flex: 1;
  text-align: center;
}

.time {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#bus-schedule-form {
  display: flex;
  flex-direction: row;
  max-width: 100%; /* Puedes ajustar este valor según tus necesidades */
  margin: 0 auto; /* Centra el formulario horizontalmente */
  padding: 30px 60px 30px 60px;
  background-color: aliceblue;
  border-radius: 10px;
		column-gap: 20px!important;
}

#bus-schedule-form label {
  display: none;
  margin-bottom: 5px;
}

#bus-schedule-form input,
#bus-schedule-form select,
#bus-schedule-form button {
  margin-bottom: 0px;
  padding: 10px;
  font-size: 16px;
  margin-left: 0px;
}

#bus-schedule-form button:disabled {
  background-color: #cccccc; /* Color del botón deshabilitado */
  cursor: not-allowed;
}

#fecha {
  margin-left: 10px;
  margin-right: 0px;
	width: 20%;
padding-left: 20px !important;
	    border-color: black;
}

#select2-origen-container {
  margin-left: 10px;
  margin-right: 10px;
}




#destino {
  margin-left: 10px;
  margin-right: 10px;
}

#bus-schedule-form button {
  margin-top: 0px;
  background-color: #00aeef; 
  color: white;
  border: none;
  cursor: pointer;
	padding: 0px 10px 0px 10px !important;

	
}





.select2-selection--single{
	margin-top: 0px;
	padding-top: 10px;
		padding-bottom: 36px;
	 border: 1px solid #000!important;
	padding-left: 10px;


}
.select2-container--default .select2-selection--single .select2-selection__clear { 
    margin-right: 25px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	
top: 9px!important;
}

.select2-search--dropdown { 
    margin-top: 0px;
}






.select2-results__options {
	max-height: 350px!important; }












/* Media Query para dispositivos móviles */
@media (max-width: 767px) {
  .price {
    background-color: #00aeef;
    color: white;
    text-align: center;
    margin-top: 10px;
    border-radius: 10px;
  }

  .center {
    width: 30%;
    text-align: center;
  }

  .schedule-result {
    flex-direction: column;
    align-items: center;
  }

  .schedule-result-header, .schedule-result-body {
    flex-direction: row;
    align-items: center;
  }

  .route-info {
    flex-direction: row;
    align-items: center;
  }

  .route-logo {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .time {
    width: 40%;
    text-align: center;
    background-color: yellow;
  }

  .duration {
    margin: 10px 0;
  }

  #bus-schedule-form {
    display: flex;
    flex-direction: column;
    max-width: 1200px; /* Puedes ajustar este valor según tus necesidades */
    padding: 20px;
    background-color: aliceblue;
    border-radius: 10px;
	  column-gap: 0px;
  }

  #fecha {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px!important;
	  width: 100%;
  }

  #origen {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px!important;
  }

  #destino {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px!important;
  }
	
.select2-selection--single{
	margin-top: 12px;
	padding-top: 10px;
		padding-bottom: 36px;
	 border: 1px solid #000!important;
	padding-left: 10px;
	margin-left: 0px;

}
	
	
	
	
	
	
.select2-container--default .select2-selection--single .select2-selection__clear { 
    margin-right: 25px;
}
	
	.select2-container--default .select2-selection--single .select2-selection__arrow {
	
top: 13px!important;
}
	

#bus-schedule-form button {
  margin-top: 0px;
   background-color: #00aeef; 
  color: white;
  border: none;
  cursor: pointer;
	padding: 0px 10px 0px 10px !important;
	
}
	
.select2-container--open .select2-dropdown {
    left: 0px;
}
	
.select2-results__options {
	max-height: 300px!important; }	
	
	
	
	
}


