#group-container {
    font-family: Arial, sans-serif;
    top: 0px;
    left:0px;
    right:0px;
    bottom: 0px;
    position:absolute;
    display: flex;
    flex-direction: row; 
    background-color: antiquewhite;

}

#flash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    display: none;
}

#flash-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: absolute;
    top:100px;
    width: 600px;
    height: fit-content;
    margin-left: -310px;
    left:50%
}

#GroupRePlay{
position:absolute;
width:100%;
height:100%;
left:0px;
top:0px
}
#theGroup-container {
    bottom: 65px;
    top:50px;
    left:0px;
    right: 0px;
    position: absolute;
}

#timeline {
    width: 180px;
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid #ccc;
    padding: 10px;
}

.timeline-item {
    padding: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    color: white; /* Ensure the text is white for better contrast */
}

.timeline-item.active {
    font-weight: bold;
    border: 2px solid #000;
}

#canvas {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    overflow: hidden;
}

#message-display {
    position: absolute;
    width: 90%;
    height:fit-content; /* Adjust height as needed */
    top: 10px;
    left: 5%;
    padding: 10px;
    border-radius: 20px; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 10; /* Ensure it stays on top */
    font-size: medium;
    color: black; /* Default text color */
}
#message-display0 {
    position: absolute;
    width: 40%;
    height: 150px; /* Adjust height as needed */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    border-radius: 20px; 
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 10; /* Ensure it stays on top */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8); /* Default background color */
    color: black; /* Default text color */
}

.participant {
    position: absolute;
    width: fit-content;
    min-width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.participant.highlighted {
    transform: scale(1.2);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

#group-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    right:0px;
    left:500px;
    background-color: antiquewhite;
    position: absolute;
    bottom: 0px;
    height: 50px;
    display: none;
}

#group-controls button, #group-controls label {
    margin-right: 10px;
}

#group-controls input[type="radio"] {
    margin-left: 5px;
}

.theQuestion_or_Comments{
 font-style: italic;
 font-weight: bolder;
}