.buttons-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    padding: 10px;
    gap: 16px;
}
button {
    box-sizing: unset;
    border: none;
    appearance: unset;
    text-rendering: unset;
    color: unset;
    letter-spacing: unset;
    word-spacing: unset;
    line-height: unset;
    text-transform: unset;
    text-indent: unset;
    text-shadow: unset;
    display: unset;
    text-align: unset;
    cursor: unset;
    box-sizing: unset;
    background-color: unset;
    margin: unset;
    padding-block: unset;
    padding-inline: unset;
    border-width: unset;
    border-style: unset;
    border-color: unset;
    border-image: unset;
}
.button {
    position: relative;
    overflow: hidden;
    height: 32px;
    border-radius: 100px;
    padding: 4px 24px;
    background: var(--Gradient-Action-Accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: left;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.button[data-size="small"] {
    padding: 0 16px;
}
/* .button:active {
    opacity: .85;
} */
.button[data-style="icon"] {
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    background: unset;
    padding: 0;
}
.button[data-style="icon"] img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}
.button[data-style="ghost"] {
    background: transparent;
    border: none;
}
.button[data-style="outlined"] {
    background: transparent;
    box-shadow:inset 0px 0px 0px 2px var(--Colors-Primitives-Pink-100);
}
.button[data-style="green"] {
    background: var(--Gradient-Surface-Success);
}
.button.fill-width {
    width: 100%;
    padding: 4px 0;
}
.button .label, .button .icon {
    position: relative;
    pointer-events: none;
    background: var(--Gradient-Surface-Soft-Depth);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.button input {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    border: none;
}
.button .label {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
}
.button .icon {
    font-size: 16px;
    height: 16px;
    pointer-events: none;
}
input.button {
    color: var(--Colors-Semantics-Text-On_Brand);
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    border: none;
}
.button[data-style="outlined"] .label, 
.button[data-style="ghost"] .label,
.button[data-style="outlined"] .icon, 
.button[data-style="ghost"] .icon {
    background: var(--Gradient-Action-Accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}