/* Kick Chat Custom Feed Styles */
#kick-chat-feed {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #0b0e0f;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: #3d3d54 #0b0e0f;
    box-sizing: border-box;
}

#kick-chat-feed::-webkit-scrollbar {
    width: 8px;
}

#kick-chat-feed::-webkit-scrollbar-track {
    background: #0b0e0f;
}

#kick-chat-feed::-webkit-scrollbar-thumb {
    background: #3d3d54;
    border-radius: 4px;
}

#kick-chat-feed::-webkit-scrollbar-thumb:hover {
    background: #4a4a5e;
}

.kick-chat-message {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
    word-wrap: break-word;
}

.kick-chat-username {
    font-weight: bold;
    margin-right: 5px;
}

.kick-chat-content {
    color: #ddd;
}

.kick-chat-emote {
    height: 24px;
    vertical-align: middle;
    margin: 0 2px;
}

.kick-chat-system {
    color: #888;
    font-style: italic;
    font-size: 12px;
}

.kick-chat-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #9999aa;
    font-size: 14px;
}

.kick-chat-error {
    color: #ff6b6b;
    padding: 10px;
    text-align: center;
    font-size: 13px;
}
