@media (max-width: 575.98px) {
    /* CSS rules for extra small screens */
}

@media (min-width: 576px) and (max-width: 767.98px) {
    /* CSS rules for small screens */
}

@media (min-width: 768px) and (max-width: 991.98px) {

    /* CSS rules for medium screens */
    .test {
        display: flex !important;
        flex-direction: row-reverse;
    }

    .chatInnerContainer {
        display: flex !important;
        flex-direction: column;
        height: 92vh;
        width: 100%;
    }

    .localVideoScreen{
        position: relative !important;
        width: 100% !important;
        height: 43vh !important;
    }
    .remoteVideoScreen{
        position: relative !important;
        width: 100% !important;
        height: 43vh !important;
    }

    .vidBtnHolder{
        position: relative !important;
        gap: 20px;
        bottom:0 !important;
    }
    .vidBtn {
        margin: 1% 2% !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    /* CSS rules for large screens */
    .test {
        display: flex !important;
        flex-direction: row-reverse;
    }

    .chatInnerContainer {
        display: flex !important;
        flex-direction: column;
        height: 92vh;
        width: 80%;
    }
    .localVideoScreen{
        position: relative !important;
        width: 100% !important;
        height: 43vh !important;
    }
    .remoteVideoScreen{
        position: relative !important;
        width: 100% !important;
        height: 43vh !important;
    }
    .vidBtnHolder{
        position: relative !important;
        gap: 20px;
        bottom:0 !important;
    }
    .vidBtn {
        margin: 1% 2% !important;
    }
}

@media (min-width: 1200px) {
    /* CSS rules for extra large screens */
    .test {
        display: flex !important;
        flex-direction: row-reverse;
    }

    .chatInnerContainer {
        display: flex !important;
        flex-direction: column;
        height: 92vh;
        width: 60%;
    }
    .localVideoScreen{
        position: relative !important;
        width: 100% !important;
        height: 43vh !important;
    }
    .remoteVideoScreen{
        position: relative !important;
        width: 100% !important;
        height: 43vh !important;
    }
    .vidBtnHolder{
        position: relative !important;
        gap: 20px;
        bottom:0 !important;
    }
    .vidBtn {
        margin: 1% 2% !important;
    }
}

