<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #222;
    font-family: Source Code Pro, monospace;
    /* max-height: 100vh; */
}
.notifSuccess,.notifFail{
    width: 100%;
    height: 2rem;
    text-align: center;
    padding-top: 0.5rem;
    background-color: white;
    color: green;
}
.notifFail{
    color: red;
}
.container{
    display: grid;
    grid-template-columns: 3fr 1fr;
}
.greet{
    color: white;   
    text-align: center;
}
#id{
    color: white;
}
.btn{
    background-color: transparent;
    font-family: Source Code Pro, monospace;
    padding: 0.5rem 2rem;
    border: 2px solid white;
    color: white;
    font-size: 1rem;
    outline: none;
    border-radius: 5px;
    margin: 0 1rem;
    cursor: pointer;
    font-weight: bold;
}
.btn:hover{
    background-color: #303030;
}
.input{
    padding: 0.5rem 1rem;
    font-family: Source Code Pro, monospace;
    border-radius: 5px;
    border: none;
    font-size: 1.2rem;
    outline: none;
    color: #000000;
}
.panel1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.panel1 .batch{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.activeUser{
    text-align: center;
    color: white;
    height: 18rem;
}
.shareScreen{
    margin: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}
.list{
    height: 8rem;
    width: 15rem;
    margin: 2rem auto;
    padding: 1rem;
    overflow-y: auto;
}
.listItems{
    margin: 0.5rem 0;
    cursor: pointer;
    color: #f4602e;
    background-color: white;
    border-radius: 0.8rem;
    padding: 0.5rem 0;
}
.panel2{
    max-height: 100vh;
    min-width: 20rem;
    padding: 0.5rem;
}
.chatbox{
    border-radius: 1rem;
    height: 100%;
    background-color: #303030;
    display: grid;
    grid-template-rows: 3rem 1fr 2.8rem;
}
.msgBox{
    margin: 2rem 0 2rem;
    max-height: 34rem;
    overflow-y: auto;
}
.chatHead{
    padding: 1rem;
    border-bottom: 4px solid #ff424d;
    width: 10rem;
    text-align: center;
    margin: 0 auto;
    color: #ff424d;
}
.sendMsg{
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 0.5rem;
}
.msg{
    margin: 1rem 1rem 0;
    color: green;
}
.newConn, .disConn{
    text-align: center;
    margin-top: 1rem;
    color: #ff424d;
}
.disConn{
    color: red;
}
.sendbtn{
    padding: 0.5rem 1rem;
    background-color: #ff424d;
    font-size: 15px;
    font-weight: bold;
    color: #222;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    outline: none;
}
#inputMsg, .search{
    padding: 0.5rem 1rem;
    border-radius: 5px;
    outline: none;
    width: 12rem;
}
#v1{
    width: 700px;
    height: auto;
    background-color: black;
    margin: 1rem;
    border-radius: 1rem;
    outline: none;
}
.badge{
    position: fixed;
    top: -0.2rem;
    left: -0.2rem;
    transform: rotate(-45deg) translate(-25%, -25%);
    background-color: rgb(175, 24, 24);
    color: white;
    padding: 0.5rem 3rem;
    text-align: center;
}
.badge p{
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
}
.hide{
    display: none;
}
@media screen and (max-width: 1100px){
    .container{
        grid-template-columns: 1fr;
    }
    .panel2{
        display: none;
    }
    .panel1 .batch{
        display: flex;
        flex-direction: column;
    }
    .greet{
        text-align: center;
    }
    .input{
        margin-bottom: 1rem;
    }
    .shareScreen .greet{
        display: none;
    }
    .share{
        display: none;
    }
    .join .greet{
        display: none;
    }
    #v1{
        width: 95%;
        max-width: 700px;
    }
}</pre></body></html>