body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.video-container {
    position: relative;
    margin-bottom: 20px;
}
#myvideo {
    width: 100%;
    max-width: 640px;
    height: auto;
    background-color: #000;
    border-radius: 4px;
}
.controls {
    margin-top: 15px;
}
.status {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
}
.status.connecting {
    background-color: #fff3cd;
    color: #856404;
}
.status.connected {
    background-color: #d4edda;
    color: #155724;
}
.status.error {
    background-color: #f8d7da;
    color: #721c24;
}
button {
    padding: 8px 16px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
button.primary {
    background-color: #007bff;
    color: white;
}
button.danger {
    background-color: #dc3545;
    color: white;
}
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
