body, html{
    background-color: #2b2b2b;
    color: white;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

.session-panel{
    display: flex;
    position: absolute;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: rgb(72, 21, 121);
    opacity: 1;
    transition: opacity 1s ease-in-out;
    z-index: 7;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    gap: 5vw;
}

.user-info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vw;
}

.user-icon{
    display: flex;
    width: 10vw;
    aspect-ratio: 1;
    background-image: url('../../static/Images/speaking.webp');
    background-size: cover;
    border-radius: 50%;
    background-color: rgb(70, 70, 70);
}

.username{
    font-size: 2vw;
    color: white;
    font-family: Arial;
}

.windows-loading{
    display: flex;
    height: 2vw;
    aspect-ratio: 1;
}