.fur-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: zoom-in;
    border: 1px solid var(--border);
}

.fur-diff-up { color: #16a34a; font-weight: 600; }
.fur-diff-down { color: #dc2626; font-weight: 600; }

.fur-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: zoom-out;
}
.fur-lightbox.open { display: flex; }
.fur-lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

/* Inline follower edit on user detail */
.fc-row { display: inline-flex; align-items: center; gap: .35rem; }
.fc-edit-btn {
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-size: .85rem;
    cursor: pointer;
    padding: 2px 4px;
}
.fc-edit-btn:hover { color: var(--indigo); }
.fc-lock-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .7rem;
    color: #b45309;
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 8px;
}
.fc-edit {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    flex-wrap: wrap;
}
.fc-edit input { font-size: .8rem; padding: 2px 6px; height: auto; }
