.participant-page-container {
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.participant-page-work-area {
    display: flex;
    flex-direction: row;
    width: 85vw;
    height: 80vh;
    border: 1px solid lightgrey;
    border-radius: 10px;
    background-color: white;
}

.participant-page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    bottom: 65px;
}

.participant-page-header img {
    margin: 10px;
    padding: 15px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    background-color: white;
}

.participant-page-content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5px;
    height: 100%;
    width: 100%;
    bottom: 60px;
}

.participant-page-footer {
    display: block;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.iframe-container {
    min-height: 300px;
    height: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .participant-page-container {
        height: 100%;
    }

    .participant-page-work-area {
        margin-top: 60px;
        width: 95vw;
        min-height: 85vh;
        height: 100%;
        flex-direction: column;
    }
}
