.chip{
    background-color: var(--bg-tertiary);
    border-radius: 22px;
    padding: 0.3rem 1rem;
    width: fit-content;
    display:flex;
    gap: 0.3rem;
    align-items: center;
    cursor: pointer;
    user-select: none;
    color:var(--text-secondary);
    transition: background 0.13s ease-in, color 0.13s ease-in;
}

.chip:hover{
    background-color: var(--accent-bg);
}

.chip:active{
    color: white;
    background-color: var(--accent);
}

.chip-image{
    width: 16px;
    height:16px;
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.chip-initial{
    background: var(--accent);
    color: white;
    font-weight: 750;
    font-size: 10px;
    padding: 10px;
    letter-spacing: -0.5px;
    display:flex;
    justify-content: center;
    align-items: center;
}