
#searchModal .modal-content {
    background-color:rgb(10, 11, 12) !important;
    color: #ffffff !important;
  }

  /* Línea inferior personalizada para el input */
  #searchModal #busquedaInput {
    border: none !important;
    border-bottom: 2px solid #00AEEF !important;
    border-radius: 0 !important;
    background-color:rgb(17, 19, 20) !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
  }

  #searchModal #busquedaInput:focus {
    border-color: #00AEEF !important;
    box-shadow: none !important;
  }

  #searchModal .btn-close {
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* SVG personalizado blanco */
#searchModal .btn-close::before {
  content: "✖";
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
}

/* Al hacer clic */
#searchModal .btn-close:active {
  border-color: #00AEEF;
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.3);
}

/* Hover opcional */
#searchModal .btn-close:hover {
  border-color: #00AEEF;
}