/* ============================================================
   Tabo Honorowcy — style v1.0.0
   (spójne z resztą wtyczek Tabo: jasny motyw, akcent #9147ff)
   ============================================================ */

.tabo-hon-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 1.5rem 0;
    max-width: 680px;
    box-sizing: border-box;
}

.tabo-hon-empty {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-size: 14px;
}

.tabo-hon-category { margin-bottom: 24px; }

.tabo-hon-category-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e5e5e5;
}

.tabo-hon-category-icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    object-fit: cover;
}

.tabo-hon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tabo-hon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.tabo-hon-row:hover { background: #fafafa; }

.tabo-hon-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.tabo-hon-avatar::before {
    content: attr(data-initials);
    position: absolute;
    font-size: 12px;
    font-weight: 700;
    color: #888;
}

.tabo-hon-avatar.has-img::before { display: none; }

.tabo-hon-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: none;
    position: relative;
    z-index: 1;
}

.tabo-hon-name-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tabo-hon-name {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tabo-hon-comment {
    font-size: 12px;
    color: #888;
    white-space: normal;
}

@media (prefers-color-scheme: dark) {
    .tabo-hon-row              { background: #18181b; border-color: #2a2a30; }
    .tabo-hon-row:hover        { background: #202024; }
    .tabo-hon-name             { color: #f2f2f7; }
    .tabo-hon-comment          { color: #999; }
    .tabo-hon-avatar           { background: #27272a; }
    .tabo-hon-category-heading { border-color: #333; }
}

@media (max-width: 480px) {
    .tabo-hon-name    { font-size: 13px; }
    .tabo-hon-row     { padding: 8px 10px; gap: 9px; }
    .tabo-hon-comment { font-size: 11px; }
}
