

  #remote-video-container {
    position: relative;
    width: 50%;
	top: 10px;
    max-width: 800px;
    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;
	margin-bottom: 20px;
	margin-right: 40px;
	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: 160px;
 
  font-size: 15px;
}
  
