
#remote-video-container {
    position: relative;
    width: 50%;
    max-width: 900px;
    top: 10px;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

#remote-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#local-video-container {
    position: relative;
    float:right;
    top: 10px;
    bottom: 10px;
    right: 10px;
    width: 40%;
    max-width: 200px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    z-index: 2;
    box-shadow: 0 0 12px rgba(0,0,0,0.6);
}

#local-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

button {
    width: 120px;
    font-size: 15px;
}
