/* Unread Tabs */
.chat-tab.unread {
    color: #ff4500;
    text-shadow: 0 0 5px rgba(255, 69, 0, 0.5);
    border-bottom: 2px solid #ff4500;
    animation: pulseTab 2s infinite;
}

@keyframes pulseTab {
    0% { background: rgba(255, 69, 0, 0.05); }
    50% { background: rgba(255, 69, 0, 0.2); }
    100% { background: rgba(255, 69, 0, 0.05); }
}

/* Self Message Color */
.chat-msg.self .username {
    color: #ff00ff; /* Magenta/Pink for self */
    text-shadow: 0 0 5px #ff00ff;
}

/* Channel Links */
.channel-link {
    color: #00ffff;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.2s;
}

.channel-link:hover {
    color: #fff;
    text-shadow: 0 0 8px #00ffff;
}
