/* ── Cohost bar ─────────────────────────────────────────────────────────────── */
.scl-cohost-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    gap: 8px;
    padding: 6px 8px;
    background: rgba(0,0,0,0.55);
    overflow-x: auto;
    scrollbar-width: thin;
}

.scl-cohost-slots {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.scl-cohost-slot {
    position: relative;
    width: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #111;
    border: 2px solid rgba(255,255,255,0.2);
    pointer-events: all;
}

.scl-cohost-video-wrap {
    width: 80px;
    height: 60px;
}

.scl-cohost-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scl-cohost-novid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    gap: 3px;
    background: #1a1a2e;
}

.scl-cohost-novid img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.scl-cohost-novid span {
    font-size: 10px;
    color: #ccc;
    text-align: center;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scl-cohost-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.65);
    font-size: 10px;
    color: #fff;
    padding: 2px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scl-cohost-remove-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 11px;
    padding: 0 2px;
    line-height: 1;
    flex-shrink: 0;
}

/* ── Cohost actions row ──────────────────────────────────────────────────────── */
.scl-cohost-actions {
    padding: 6px 10px 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.scl-cohost-req-btn {
    font-size: 13px;
    padding: 6px 14px;
}

.scl-cohost-leave-btn {
    font-size: 13px;
    padding: 6px 14px;
    background: rgba(180,20,20,0.8);
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

/* ── Invite banner ───────────────────────────────────────────────────────────── */
.scl-cohost-invite-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(30,100,255,0.2);
    border: 1px solid rgba(30,100,255,0.5);
    border-radius: 8px;
    margin: 8px 10px 0;
    flex-wrap: wrap;
}

.scl-cohost-invite-banner span {
    flex: 1;
    font-size: 13px;
    color: #e0e8ff;
}

/* ── Invite button in viewers modal ─────────────────────────────────────────── */
.scl-btn-invite-cam {
    background: rgba(30,180,100,0.8);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 3px 10px;
    font-size: 11px;
    cursor: pointer;
}
.scl-btn-invite-cam:hover { background: rgba(30,200,110,0.95); }

