.pill-button {
    --background: #f5f5f5;
    --background-hover: #dfdfdf;
    --background-press: #cccccc;
    --foreground: #7A7A7A;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border: none;
    border-radius: 64px;
    color: var(--foreground);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    min-height: 56px;
    padding: 0 32px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.pill-button:hover {
    background: var(--background-hover);
}

.pill-button:active {
    background: var(--background-press);
}

.pill-button i {
    font-size: 16px;
}
