.doc-bg {
    background: #212225;
    color: #fff;
}

#userAvatars {
    display: flex;
    flex-direction: row-reverse;
}

#userAvatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #171717;
    margin-left: -8px;
    transition: transform 0.2s ease;
}

#userAvatars img:hover {
    transform: translateY(-2px);
    z-index: 2;
}

/* Feed specific styles */
wy-feed {
    --wy-feed-bg: transparent;
    --wy-feed-item-bg: rgba(255, 255, 255, 0.05);
    --wy-feed-item-hover-bg: rgba(255, 255, 255, 0.1);
    --wy-feed-text-color: #fff;
} 