.meeting-container {
    height: 80vh;
    width: 90%;
    display: flex;
    flex-direction: column;
}

#videos {
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

#subscriber {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    flex-grow: 2;
    z-index: 10;
    border-style: solid;
    border-width: 1px;
}

#publisher {
    position: absolute;
    width: 240px;
    height: 240px;
    bottom: 10px;
    left: 10px;
    z-index: 100;
    border: 3px solid white;
    border-radius: 3px;
}

@media (max-width: 768px) {
    #publisher {
        width: 150px;
        height: 150px;
    }
}
