:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
body{
  background: linear-gradient(150deg, rgb(69, 181, 255), rgb(108, 0, 197),rgb(69, 181, 255), rgb(108, 0, 197));
    background-attachment: scroll;
  background-attachment: fixed;
  margin: 0% 0% 0% 0%;
}
.contenedorD{
    display:none ;
    width: 100%;
    padding-bottom: 13%;
    /*background-color: rgba(255, 255, 255, 0.3);*/
    position: relative;
    margin-top: 28px;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    display: flex;
    flex-direction: row; 
    flex-direction: column;
    align-items: stretch;     /* botones uno debajo del otro, usa 'column' si los quieres en línea */
    min-height: 60vh;            /* ajusta según el alto que desees */
    gap: 20px;
}

.conte-menu-busquedaM{
    width: 100%;
    height: 6vh;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;         /* <-- Esto permite que los botones bajen a otra fila */
    justify-content: center; /* Centra horizontalmente */
    align-items: flex-start; /* Opcional: alinea arriba */
    gap: 14px;
}
.BtAGpM{
    width: 93px;
    height: 30px;
    font-size: 12px;
    background-color: aliceblue; 
    color: #6200ea;
    border-color: aqua;
    border-radius: 10px;
    position: relative;
    top: 2%;
}
.contenedor-menubusquedaM{
  max-width: 408px;
  height: 9vh;
  margin: 0 auto;
  position: relative;
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  top: -12px;
}
.BtAGBM{
    width: 89px;
    height: 25px;
    font-size: 8px;
    background-color: white;
    border-color: aqua;
    color: rgb(153, 0, 173);
    border-radius: 10px;
    position: relative;
    top: 2%;
    text-align: center;
    text-align-last: center;
}
.BtAGBM.filtro-activo {
  background-color: rgb(153, 0, 173) !important;
  color: white !important;
}
.recompensa {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #5a00d1;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.recompensa::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  z-index: -1;
  border-radius: 16px;
  background: linear-gradient(120deg, #fff 0%, #7200ff 40%, #00ffd5 60%, #fff 100%);
  background-size: 200% 200%;
  filter: blur(2px);
  animation: recompensa 2s linear infinite;
  opacity: 0.7;
}

@keyframes recompensa {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.resultadosbusquedaM {
  padding: 10px 0 30px;
}

.resultadosbusquedaM .card-missing {
  margin-bottom: 24px !important;
}
