body {
    margin: 0;
    background: #111;
    color: white;
    font-family: Arial, sans-serif;
}

#container {
    display: flex;
    height: 100vh;
}

#video-section {
    flex: 3;
    position: relative;
    background: black;
}

#video {
    width: 100%;
    height: 100%;
    background: black;
}

#status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    padding: 5px 10px;
    border-radius: 5px;
}

#chat-section {
    flex: 1;
    background: #222;
    display: flex;
    flex-direction: column;
}

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

#chat-input {
    display: flex;
    padding: 10px;
    background: #333;
}

#chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    background: #444;
    color: white;
}

#chat-input button {
    padding: 10px 20px;
    background: #0a84ff;
    border: none;
    color: white;
    cursor: pointer;
}