.ff-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 3px 10px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 600;

    background: rgba(30, 115, 190, 0.08);
    border: 1px solid rgba(30, 115, 190, 0.2);
    color: #1e73be;

    transition: all 0.15s ease;
}

.ff-chip:hover {
    background: rgba(30, 115, 190, 0.14);
}

.ff-chip button {
    border: none;
    background: transparent;
    padding: 0;
    margin-left: 2px;

    font-size: 12px;
    cursor: pointer;

    opacity: 0.6;
}

.ff-chip button:hover {
    opacity: 1;
}
