.streaming-container {
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
}

.stream-select {
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 6px;
    outline: none;
    font-family: inherit;
}

.stream-controls {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border);
    justify-content: center;
    flex-wrap: wrap;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
}

.control-group label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stream-viewer {
    flex: 1;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

#streamCanvas {
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    display: none;
}

.stream-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
}

.stream-placeholder i {
    font-size: 4rem;
    opacity: 0.3;
}

.stream-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

input[type=range] {
    accent-color: var(--primary);
}