.info {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
}

.toggleButton {
    padding: 5px 10px;
    background: var(--awb-color4, #0085ba); /* Valores predeterminados si las variables no están definidas */
    color: var(--awb-color1, #fff);
    border: 0;
    cursor: pointer;
}

.toggleButton:hover {
    background: var(--awb-color5, #005d7f);
}

.center-button {
    display: flex;
    justify-content: center;
    margin: 10px 0; /* Ajusta el margen según sea necesario */
}