.button-component {
    display: flex;
    gap: 1em;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    text-wrap: nowrap;
}

@media (max-width: 500px) {
    .button-component {
        flex-direction: column;
        align-items: stretch;
    }

    .button-component > * {
        width: 100%;
    }

    .button-component .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}