/* Estilos para la sección de búsqueda */
.search-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .search-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
  }
  
  .search-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
  }
  
  .search-form {
    width: 100%;
  }
  
  .search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .search-field {
    display: flex;
    flex-direction: column;
  }
  
  .search-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    font-size: 0.95rem;
  }
  
  .search-icon {
    margin-right: 6px;
    color: #ff5757;
    stroke: #ff5757;
  }
  
  .search-input {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .search-input:focus {
    border-color: #ff5757;
    box-shadow: 0 0 0 2px rgba(255, 87, 87, 0.1);
    outline: none;
  }
  
  .search-input::placeholder {
    color: #aaa;
  }
  
  .search-button {
    background-color: #ff5757;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(255, 87, 87, 0.2);
    margin-left: auto;
  }
  
  .search-button:hover {
    background-color: #e04a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 87, 87, 0.25);
  }
  
  .search-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 87, 87, 0.2);
  }
  
  .search-button-icon {
    margin-right: 8px;
  }
  
  .search-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(0,0,0,0.02), rgba(0,0,0,0.1), rgba(0,0,0,0.02));
    margin: 20px 0 40px;
  }
  
  /* Estilos para cuando no hay resultados */
  .no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
  }
  
  .no-results-icon {
    stroke: #ccc;
    margin-bottom: 15px;
  }
  
  .no-results-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
  }
  
  .no-results-tip {
    color: #888;
    max-width: 400px;
  }
  
  .search-prompt {
    text-align: center;
    color: #666;
    margin-top: -10px;
    margin-bottom: 30px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .search-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .search-button {
      width: 100%;
      margin-top: 10px;
    }
  }

  .boop-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #e74c3c;
}

.select2-container .select2-selection--single {
  height: 38px !important;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  background-color: #f9f9f9;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  color: #333;
  font-size: 14px;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 8px;
}

.select2-container--default .select2-results__option--highlighted {
  background-color: #3fab9d !important;
  color: #fff;
}
