    /* Fondo general */
    body {
      background-color: #f8f9fa;
    }
    /* Estilos para el jumbotron */
    .jumbotron {
      background: url('https://via.placeholder.com/1200x400') center center/cover no-repeat;
      color: #fff;
      padding: 4rem 2rem;
      margin-bottom: 2rem;
      border-radius: 0.3rem;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    }
    /* Estilos para el sidebar (barra de filtros) */
    .sidebar {
      background-color: #fff;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 4px;
      width: 100%;
      /* Para pantallas grandes, el sidebar tendrá un ancho máximo fijo */
      max-width: 300px;
      margin: 0 auto;
    }
    /* Media query para pantallas pequeñas: el sidebar se adapta al 100% */
    @media (max-width: 767.98px) {
      .sidebar {
         max-width: 100%;
      }
    }

/* Estilo moderno para las cards */
.car-card {
  border-radius: 10px;
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}
.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.car-img {
  height: auto;
  max-height: 300px;

  object-fit: cover;
}
.car-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.car-price {
  font-size: 1.3rem;
  color: black;
  margin-bottom: 0.5rem;
}
.car-subtitle {
  font-size: 0.9rem;
  color: #6c757d;
}

.icono {
  width: 50px;
  height: 50px;
  object-fit: contain;
}



.price-filter-container {
  max-width: 100px; /* Ancho reducido */
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.price-filter-header {
  text-align: center;
  margin-bottom: 20px;
}
.price-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.price-inputs input {
  width: 48%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
}
#price-slider {
  margin: 10px 0;
  height: 10px; /* Altura del slider */
}
/* Estilos personalizados para noUiSlider */
.noUi-target {
  background: #e9f3ff;
  border-radius: 8px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}
.noUi-connect {
  background: #3b76c4;
}
.noUi-handle {
  background: #3b76c4;
  border: none;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  top: -10px; /* Ajuste vertical */
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.price-display {
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}