* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 14px;
    color: rgb(80, 81, 81);
}

.container {
    width: 1024px;
    margin-inline: auto;
    padding-block: 15px;

    ::-webkit-scrollbar {
        width: 3px;
    }

    ::-webkit-scrollbar-track {
        background: rgb(225, 248, 240);
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 100%;
        background: #528c78;
        background: radial-gradient(circle, rgba(82, 140, 120, 1) 0%, rgb(225, 248, 240) 100%);
    }
    
}

.video-lobby {
    position: relative;

    .participant-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        padding: 10px;
        background-color: rgb(225, 248, 240);
        width: 1024px;
        overflow-y: auto;
        margin-block: 15px;
        height: 600px;

        .participant {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 250px;
            min-height: calc(20% - 8px);
            height: calc(20% - 8px);
            padding: 10px;
            background-color: rgb(157, 249, 217);
        }

        .active-participant {
            position: absolute;
            left: 10px;
            top: 10px;
            bottom: 0;
            width: calc(100% - 285px);
            height: calc(100% - 20px);
            font-size: 16px;
            font-weight: 700;
        }
    }
}