body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.title {
    top: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1;
    display: block;
    position: absolute;
    background-color: #444444;
    color: white;
    margin: 0;
    text-align: center;
    padding: 15px 0;
}

.entry-modal {
    border: 1px solid #444444;
    width: 90%;
    max-width: 300px;
    margin: auto;
    z-index: 9999;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20%;
    padding: 10px;
    color: #fff;
    background-color: #444444;
    text-align: center;
}

#notification {
    position: absolute;
    z-index: 1;
    text-align: center;
    color: #fff;
    margin: 0;
    top: 47.33px;
    font-size: 18pt;
    width: 100%;
    background-color: orange;
}

.room-input {
    border: none;
    padding: 5px;
    width: 80%;
    margin: 10px 0;
}

button {
    margin: 3px;
    padding: 10px 15px;
}

#remote-video {
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: lightgray;
    position: absolute;
    object-fit: cover;
}

#local-video {
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    height: 150px;
    z-index: 1;
    background-color: #444444;
    position: absolute;
    bottom: 70px; /* ajustar la altura para dejar espacio para los controles */
    right: 15px;
    border: 1px solid white;
}

.meet-controls-bar {
    bottom: 0;
    background-color: black;
    left: 0;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.meet-controls-bar button {
    margin: 0 5px;
}

@media (max-width: 600px) {
    .title {
        font-size: 16pt;
    }

    #notification {
        font-size: 12pt;
    }

    .meet-controls-bar button {
        padding: 5px 10px;
        font-size: 10pt;
    }

    #local-video {
        width: 45%;
        height: auto;
        bottom: 70px; /* mantener espacio para los controles */
        right: 5%;
    }
}


/* Añadir al final de tu archivo styles.css */
.chat-container {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: #444444;
    color: white;
    display: flex;
    flex-direction: column;
    border: 1px solid white;
    z-index: 1000;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.chat-container input[type="text"],
.chat-container input[type="file"],
.chat-container button {
    margin: 5px;
    padding: 5px;
    border: none;
}
