    .seleccionada {
      background-color: #020b1280;
      color: #fff;
    }.boton-flotante {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    /* Estilos para los botones en el menú desplegable */
    #botonesFlotantes {
      display: none;
      position: fixed;
      flex-direction: column;
      bottom: 80px;
      right: 20px;
      z-index: 999;
    }



#botonesFlotantes button {
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
#botonesFlotantes button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
 
 
