.contenedor-botones {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: #f0f0f0;
}

.boton {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton:hover {
    background-color: #3e8e41;
}

.boton:active {
    transform: scale(0.9);
}