.ListaDesplegable {
    display: none;
}

.show {
    display: block;
}

.boton-desplegable {
    width: 100%;
    padding: 8px 12px;
    background-color: #b0cbff;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    border: none;
    /* Agregamos esta línea para eliminar el borde */
    outline: none;
    /* Agregamos esta línea para eliminar el contorno de enfoque */
    margin-top: 2px;
}

.boton-desplegable:hover {
    color: white;
    transform: scale(1.1);
    z-index: 100;
    background: #25bcff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
}

.boton-desplegable:active {
    background-color: blue;
    color: white;
}