.flotanteContainer {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 20px;
    right: 20px;
    z-index: 1001;

}

.flotanteContainer:hover {
    transition: all 0.3s ease;
}

.conBotones {
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
    height: 100%;
}

.sinBotones {
    display: flex;
    flex-direction: inherit;

}

#showButtons {
    background-color: #b700ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

#showButtons:hover {
    background-color: #7303a0;
    transform: scale(1.05);
}

#hideButtons {
    background-color: #b700ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

#hideButtons:hover {
    background-color: #7303a0;
    transform: scale(1.05);
}
div.flotanteContainer button {
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    height: 100%;
    margin-top: 10px;
}
div.flotanteContainer button:hover {
    transform: scale(1.05);
}
#sugerenciaButton {
    background-color: #aaa8a8;
}
#sugerenciaButton:hover {
    background-color: #888686;
}
.darkButton {
    background-color: #000;
    
}

.darkButton:hover {
    background-color: #444;
}

#downloadButton {
    background-color: #007bff;

}

#downloadButton:hover {
    background-color: #0056b3;
}

#clearButton {
    background-color: #dc3545;
}

#clearButton:hover {
    background-color: #c82333;
}

body.dark-mode .darkButton {
    background-color: gray;
    color: #000;
}