body {
    font-family: sans-serif;
    background-color: #161622;
    color: rgb(207, 207, 207);
}

#videos {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    pointer-events: none;
}

#videos-inner {
    position: relative;
}

video {
    background-color: #000;
}

video::-webkit-media-controls {
  display: none;
}

/* Could Use thise as well for Individual Controls */
video::-webkit-media-controls-play-button {}

video::-webkit-media-controls-volume-slider {}

video::-webkit-media-controls-mute-button {}

video::-webkit-media-controls-timeline {}

video::-webkit-media-controls-current-time-display {}

#remoteVideo {
    max-width: calc(100vw - 40px);
        max-height: calc(100vh - 120px);
    border: 2px solid #333;
    background-color: #000;
    box-shadow: 0 4px 48px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    }
    
    #localVideo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transform: scaleX(-1);
}
.controls {
    text-align: center;
    margin-top: 10px;
}

#rejoin {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#hangup {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
}

#mute {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#disable-video {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}