/* Container styling */
#webrtc-chat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Video elements */
#localVideo, #remoteVideo {
    width: 100%;
    max-width: 480px;
    height: 360px;
    background-color: black;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    object-fit: cover;
}

/* Start button */
#startChat {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

#startChat:hover {
    background-color: #005177;
}
