.button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-full);
    border: none;
    padding: var(--spacing-24);
    margin: 0;
    cursor: pointer;
    color: var(--color-text-primary-inverted);
    background-color: var(--color-bg-fill-alpha-black-40);
    transition: opacity 0.3s ease;
}

.button:hover {
    opacity: 0.85;
}

.inverted {
    background-color: var(--color-bg-fill-alpha-white-20);
}

.iconWrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
