
.evc-video-call{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#evc-stream-wrapper{
    background-color: var(--evc-primary);
    padding: 20px;
    display: none;
    width: 100%;
}

#evc-join-btn{
    position: relative;
    font-size:18px;
    padding:20px 40px;
    cursor: pointer;
    background-color: var(--evc-primary);
    color: var(--evc-white);
    border: none;
    outline: none;
    border-radius: 30px;
}

#evc-video-streams{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    height: 60vh!important;
    margin:0 auto;
}

.video-container{
    max-height: 100%;
    border: 2px solid var(--evc-primary);
}

.video-player{
    height: 100%;
    width: 100%;
}

.evc-video-call .fa, .evc-video-call .fa-solid {
    background-color: var(--evc-transparent);
    font-size: 32px!important;
    padding: 10px 20px;
    cursor: pointer;
    color: var(--evc-white);
}

#evc-leave-btn{
    background-color: var(--evc-red);
    color: var(--evc-white);
}

#evc-stream-controls{
    display: none;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-top:0.5em;
}

@media screen and (max-width:1400px){
    #evc-video-streams{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        width: 95%;
    }
}

@media screen and (max-width:767px){
    #evc-video-streams{
     height: 96vh!important;
   }
}