* {
    margin: 0px;
    padding: 0px;
}

body {
    background: #0089f2;
    color: rgba(0, 0, 0, 0.87);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    height: 100dvh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}



.logoEclair {
    height: 60%;
    background-color: #00000000;
}






.microPNG {
    width: 30px;
    height: 30px;
    background-color: #ffa100;
    border-radius: 90px;
    padding: 10px;
    border: 3px solid white;
}

.desligaPNG {
    width: 30px;
    height: 30px;
    background-color: #ec0000;
    border-radius: 90px;
    padding: 10px;
    border: 3px solid white;
}

.cameraPNG {
    width: 30px;
    height: 30px;
    background-color: #a94d14;
    border-radius: 90px;
    padding: 10px;
    border: 3px solid white;
}

#eclairLogo {
    height: 60px;
}

@keyframes scrollar {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(calc(-204px * 4));
    }
}





#message {
    background: white;
    max-width: 360px;
    margin: 100px auto 16px;
    padding: 32px 24px;
    border-radius: 3px;
}
.biscoitinho {
    display: none;
}
#message h2 {
    color: #ffa100;
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 8px;
}

#message h1 {
    font-size: 22px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 16px;
}

#message p {
    line-height: 140%;
    margin: 16px 0 24px;
    font-size: 14px;
}

#localVideo {
    border-radius: 8px;
    height: 100%;
}

#message a {
    display: block;
    text-align: center;
    background: #039be5;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    padding: 16px;
    border-radius: 4px;
}

#message,
#message a {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#load {
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
    font-size: 13px;
}





button {
    margin: 0.2em 0.1em;
}

div#videos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    flex-shrink: 1;
    max-height: 400px;
}


div#videos>video {
    background: rgba(0, 0, 0, 0);
    width: 640px;
    height: 100%;
    display: block;
    margin: 1em;
    border-radius: 5px;
    object-fit: cover;
}

.iconeUtilitarios {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 15%;
    padding: 10px 5px;
    margin-bottom: 20px;
    min-width: 200px;

    animation-fill-mode: forwards;
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    height: 100px;
    max-width: 600px;
    animation-name: sobindoTelaBotoes;
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
    animation-delay: 4s;
}

.iconeUtilitarios>* {
    transition: all 0.2s;
    animation: sobiBotoes 1.2s ease;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes sobindoTelaBotoes {
    0% {
        opacity: 0;
        transform: translateY(0px);
        height: 100px;
    }
    20% {
        opacity: 1;
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
        height: 60px;
    }

    100% {
        opacity: 1;
        height: 60px;
        transform: translateY(0px);
    }
}

.iconeUtilitarios>*:nth-child(1) {
    animation-delay: 4s;
}

.iconeUtilitarios>*:nth-child(2) {
    animation-delay: 4.2s;
}

.iconeUtilitarios>*:nth-child(3) {
    animation-delay: 4.4s;
}

.iconeUtilitarios>*:hover {
    width: 30px;
    height: 30px;
    scale: 1.05 !important;
    cursor: pointer;
    transition: all 0.2s;
    filter: brightness(110%);
}


/* Estilo para vídeos remotos múltiplos */
.remote-video {
    background: #ffffff1f;
    height: 100%;
    display: block;
    margin: 0px 0px;
    object-fit: cover;
    min-width: 250px;

    border-radius: 8px;
    border: 2px solid #ffffff33;
    animation: remote-entrada-glow 1.2s ease;
}

@keyframes sobiBotoes {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    10% {
        scale: 1.2;
    }

    30% {
        opacity: 1;
    }

    60% {
        transform: translateY(-20px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes remote-entrada-glow {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(30px);
        filter: blur(2px);
    }

    40% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-5px);
        filter: blur(0px);
    }

    70% {
        opacity: 1;
        transform: scale(0.98) translateY(2px);
        filter: blur(0px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0px);
        filter: blur(0px);
    }
}



h1 {
    font-size: 40px;
}

.eu-label {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #0154e492;
    color: white;
    border-radius: 0px;
    padding: 5px 20px;
    font-size: 15px;
    font-weight: bold;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 2px 6px #0002;
    pointer-events: none;
    z-index: 2;
}

.videoContainer {
    position: relative;
    margin: 5px 5px;
    height: 50%;
}

.participantes {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 220px;
    min-height: 120px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
    padding: 18px 12px 12px 12px;
    z-index: 10;
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.participantes h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #0154e4;
    text-align: left;
}

#lista-participantes {
    list-style: none;
    padding: 0;
    margin: 0;
}

#lista-participantes li {
    background: #e3f2fd;
    margin-bottom: 8px;
    border-radius: 8px;
    padding: 7px 12px;
    font-size: 15px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

#lista-participantes li.eu {
    background: #0154e4;
    color: #fff;
    font-weight: bold;
}

#lista-participantes li .icone {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffa100;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    font-size: 15px;
    color: #fff;
    margin-right: 6px;
}

div.currentRoom {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    width: 20%;
    background-color: #222;
    height: 100%;


        user-select: none;
        -webkit-user-select: none; /* Para compatibilidade com Chrome/Safari */
        -moz-user-select: none;    /* Para compatibilidade com Firefox */
        -ms-user-select: none;     /* Para compatibilidade com IE/Edge */
    
}

.textcodigo {
    font-size: 12px;
    text-align: center;
    color: white;
    font-family: Roboto, Helvetica, Arial, sans-serif;

    user-select: none;
        -webkit-user-select: none; /* Para compatibilidade com Chrome/Safari */
        -moz-user-select: none;    /* Para compatibilidade com Firefox */
        -ms-user-select: none;     /* Para compatibilidade com IE/Edge */
}

.codigodaSala {
    color: white;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;

    user-select: none;
        -webkit-user-select: none; /* Para compatibilidade com Chrome/Safari */
        -moz-user-select: none;    /* Para compatibilidade com Firefox */
        -ms-user-select: none;     /* Para compatibilidade com IE/Edge */
}
.CopiarIcone {
    width: 30px;
    height: 30px;
    transition: all 0.2s;
}
.codigodaSala:hover {
    cursor: pointer;
    transition: all 0.2s;
    scale: 0.95;
}