.webrtc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.video-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.video-container video {
    background: #000;
    width: 50%;
    border-radius: 4px;
}

.webrtc-button {
    padding: 10px 15px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.webrtc-button:hover {
    background: #135e96;
}

.webrtc-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}
