/* General Body Styling */
body {
  background-color: #ffff;
}


.container {
  padding: 2px;
  margin-top: 30px;
  margin-bottom: 20px;

}

.container {
  padding-top: 10px;
}

.breadcrumb {
  background: none;
}

.filter-form {
  background-color: #e9ecef;
  border-radius: 8px;
  padding: 20px;
}

.card {
  border: none;
  border-radius: 8px;
}

.card-title {
  font-size: 1.5rem;
}


.btn {
  border-radius: 5px;
}

.card-meta {
  font-size: 0.9rem;
}

.custom-block-image {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .filter-form {
    margin-bottom: 20px;
  }
}

.card {
  border: none;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  border-radius: 20px;
  min-height: 450px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .card {
    min-height: 350px;
  }
}

@media (max-width: 420px) {
  .card {
    min-height: 300px;
  }
}

.card.card-has-bg {
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: center center;
}

.card.card-has-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  filter: grayscale(100%);
}

.card.card-has-bg:hover {
  transform: scale(0.98);
  box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
  background-size: 130%;
}

.card.card-has-bg:hover .card-img-overlay {
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.card-footer {
  background: none;
  border-top: none;
}

.card-footer .media img {
  border: solid 3px rgba(255, 255, 255, 0.3);
}

.card-title {
  font-weight: 800;
  text-decoration: none;
  /* Evita el subrayado en el título */
}

.card-meta {
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

.card-body {
  transition: all 300ms cubic-bezier(0.19, 1, 0.22, 1);
}

.card:hover .card-body {
  margin-top: 30px;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.card:hover {
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.card-img-overlay {
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
}


/* dashboard */

/* Estilo para los botones */
.btn {
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #4e73df;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #2e59d9;
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
  border: none;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.btn-secondary.pt-2 {
  background-color: #f8d7da;
  color: #721c24;
}

.btn-secondary.pt-2:hover {
  background-color: #f5c6cb;
}

.image-container {
  display: flex;
  /* Usamos flexbox para alinear las imágenes en línea */
  justify-content: center;
  /* Centra las imágenes en el contenedor */
  gap: 20px;
  /* Espacio entre las imágenes */
}

.image-container img {
  width: 100%;
  /* Asegura que ambas imágenes tengan el mismo tamaño */
  max-width: 200px;
  /* Máximo tamaño para que no crezcan demasiado */
  height: auto;
  /* Mantiene las proporciones de la imagen */
}

.img-size {
  width: 100%;
  /* Asegura que ambas imágenes ocupen el 100% del ancho del contenedor */
  height: 250px;
  /* Puedes ajustar la altura según el diseño deseado */
  object-fit: cover;
}


.station-label {
  background: white;
  color: black;
  border: 1px solid #007bff;
  border-radius: 5px;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .input-group {
    flex: 100%;
    margin-bottom: 10px;
  }
}

@media (min-width: 769px) {
  .input-group {
    flex: 1;
  }
}