.nick-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.nick-item {
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nick-item:hover {
    background: #fcfcfd;
    border-color: #cbd5e1;
}

.nick-item.is-self {
    border-color: #93c5fd;
    background: #eff6ff;
}

.nick-item.nick-speaking {
    border-color: #22c55e;
    box-shadow: 0 0 0 1px #86efac inset;
}

.nick-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nick-meta {
    min-width: 0;
    flex: 1;
}

.nick-name {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    word-break: break-word;
}

.nick-role {
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    word-break: break-word;
}

.nick-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
    min-height: 28px;
}

.nick-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    user-select: none;
}

.nick-icon.active-mic {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #22c55e;
}

.nick-icon.active-cam {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #60a5fa;
}