/* Group screen share (LiveKit) tab. Mirrors the Discord-mode watch-party look. */
.ss-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    color: #dcddde;
    height: 100%;
    box-sizing: border-box;
}
.ss-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.ss-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ss-sub {
    font-size: 12px;
    color: #9aa0a6;
    margin-top: 2px;
}
.ss-btn {
    border: none;
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #5865f2;
    color: #fff;
    transition: background .15s ease;
}
.ss-btn:hover { background: #4752c4; }
.ss-btn:disabled { opacity: .5; cursor: not-allowed; }
.ss-btn.ss-sharing { background: #ed4245; }
.ss-btn.ss-sharing:hover { background: #c93437; }
.ss-btn-watch { background: #3ba55d; padding: 5px 12px; font-size: 12px; }
.ss-btn-watch:hover { background: #2d8049; }
.ss-btn-stop { background: #4f545c; padding: 5px 12px; font-size: 12px; }
.ss-btn-stop:hover { background: #686d73; }

/* The video stage */
.ss-stage {
    position: relative;
    background: #000;
    border: 1px solid #202225;
    border-radius: 10px;
    min-height: 320px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ss-stage.ss-has-video { background: #000; }
.ss-stage video {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}
.ss-stage-label {
    color: #72767d;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

/* Live-now list */
.ss-live-list { display: flex; flex-direction: column; gap: 6px; }
.ss-live-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #2b2d31;
    border: 1px solid #202225;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
}
.ss-live-row.ss-self { color: #ed4245; font-weight: 600; }
.ss-live-name { display: flex; align-items: center; gap: 6px; }
.ss-empty { color: #72767d; font-size: 13px; padding: 6px 2px; }

/* Live dot on the sidebar tab */
.ss-live-dot {
    display: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ed4245;
    margin-left: 6px;
    box-shadow: 0 0 0 0 rgba(237, 66, 69, .7);
    animation: ss-pulse 1.6s infinite;
}
@keyframes ss-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(237, 66, 69, .6); }
    70%  { box-shadow: 0 0 0 6px rgba(237, 66, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(237, 66, 69, 0); }
}
