/* ═══ CHANNEL CHIPS (Create Room Modal) ═══ */

.channel-chips-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.channel-chips-row::-webkit-scrollbar { display: none; }

.channel-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--text-secondary, #aaa);
}
.channel-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}
.channel-chip.active {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.25), rgba(75, 0, 130, 0.2));
    border-color: rgba(138, 43, 226, 0.5);
    color: var(--text-primary, #fff);
    box-shadow: 0 2px 12px rgba(138, 43, 226, 0.15);
}
.channel-icon {
    font-size: 1.1rem;
    line-height: 1;
}
.channel-label {
    font-weight: 500;
}
.label-hint {
    font-size: 0.75rem;
    color: var(--text-secondary, #888);
    font-weight: 400;
}
