.app-wrapper {
    display: flex;
    gap: 50px;
}

.settings,
.participants-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.heading {
    font-size: 20px;
    font-weight: bold;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 280px;
    max-width: 100%;
}

.form-group input,
.form-group button,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    margin: unset;
}

.form-group input[type="checkbox"] {
    width: 14px;
}

#participants-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 10px;
}

.participant-container {
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    width: 150px;
    gap: 0;
}

.participant-container canvas{
    aspect-ratio: calc(16/9);
}

.participant-container video{
    max-width: 150px;
    height: auto;
}

.space {
    height: 10px;
    background-color: darkgrey;
}