/* Tabs */
#chat-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(200, 169, 106, 0.2);
}

#chat-tabs::-webkit-scrollbar {
    display: none;
}

.chat-tab {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #888;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
}

.chat-tab.active {
    background: rgba(200, 169, 106, 0.15);
    color: var(--chat-border);
    border-bottom: 2px solid var(--chat-border);
}

.tab-close {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.6;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-close:hover {
    background: rgba(255, 0, 0, 0.3);
    color: #fff;
    opacity: 1;
}
