Spaces:
Running
Running
body { | |
margin: 0; | |
padding: 20px; | |
font-family: Arial, sans-serif; | |
background-color: #f0f0f0; | |
} | |
.container { | |
max-width: 1200px; | |
margin: 0 auto; | |
} | |
.status-bar { | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
padding: 10px; | |
background-color: #fff; | |
border-radius: 8px; | |
margin-bottom: 20px; | |
} | |
.controls button { | |
padding: 8px 16px; | |
margin-left: 10px; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
} | |
#connect-btn { | |
background-color: #4caf50; | |
color: white; | |
} | |
#disconnect-btn { | |
background-color: #f44336; | |
color: white; | |
} | |
button:disabled { | |
opacity: 0.5; | |
cursor: not-allowed; | |
} | |
.main-content { | |
background-color: #fff; | |
border-radius: 8px; | |
padding: 20px; | |
margin-bottom: 20px; | |
} | |
.bot-container { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
} | |
#bot-video-container { | |
width: 640px; | |
height: 360px; | |
background-color: #e0e0e0; | |
border-radius: 8px; | |
margin: 20px auto; | |
overflow: hidden; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
} | |
#bot-video-container video { | |
width: 100%; | |
height: 100%; | |
object-fit: cover; | |
} | |
.debug-panel { | |
background-color: #fff; | |
border-radius: 8px; | |
padding: 20px; | |
} | |
.debug-panel h3 { | |
margin: 0 0 10px 0; | |
font-size: 16px; | |
font-weight: bold; | |
} | |
#debug-log { | |
height: 500px; | |
overflow-y: auto; | |
background-color: #f8f8f8; | |
padding: 10px; | |
border-radius: 4px; | |
font-family: monospace; | |
font-size: 12px; | |
line-height: 1.4; | |
} | |