@media only screen and (min-width: 600px) {
    #call-ui-root{
        height:var(--full-height);
        width:var(--full-width);
        display: flex;
        flex-direction: row;
    }

    #main-video-container {
        height: 100%;
        width: 70%;
        background-color: var(--base-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .main-video-standard{
        height: 90%;
    }
    
    .main-video-fullscreen {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        height: 100vh;
        background-color: white;
    }

    #buttons-container{
        width:100%;
        height:10%;
        background-color:var(--base-bg);
        display:flex;
        flex-direction: row;
        align-items:center;
        justify-content:center;
    }

    .button-icon{
        height:1.5em;
        width:1.5em;
        margin-left:var(--button-hor-margin-landscape);
        margin-right:var(--button-hor-margin-landscape);
        display:flex;
        align-items:center;
        justify-content:center;
        font-size: 2em;

        border-color: black;
        border-style: solid;
        border-width: 0.05em;
        border-radius: 50%;
    }

    .button-icon:hover{
        background-color: grey;
    }

    .camera-switch{
        display:none;
    }

    #video-list-container {
        height: 100%;
        width: 30%;
        background-color: var(--base-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow-y: scroll;
        scrollbar-width: none;
    }

    #video-list-container::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }

    .video-stream {
        height: 30%;
        width: 100%;
        margin: 1%;
        background-color: var(--base-bg);
    }
}