* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #0f0f19; color: #e5e5e5; height: 100vh; display: flex; flex-direction: column; }
header { padding: 12px 20px; background: #1a1a2e; border-bottom: 1px solid #2a2a4a; display: flex; justify-content: space-between; align-items: center; }
header h1 { font-size: 16px; color: #fff; }
#stats { display: flex; gap: 12px; font-size: 12px; }
#stats span { padding: 3px 8px; background: rgba(255,255,255,0.05); border-radius: 4px; }
main { display: flex; flex: 1; overflow: hidden; }
#map-container { flex: 1; position: relative; padding: 10px; }
#map { background: #12121f; border-radius: 8px; border: 1px solid #2a2a4a; width: 100%; height: 100%; }
#legend { display: flex; gap: 12px; padding: 8px 0; font-size: 11px; }
.legend-item { display: flex; align-items: center; gap: 4px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.sleeping { background: #3b82f6; }
.dot.working { background: #22c55e; }
.dot.commuting { background: #eab308; }
.dot.socializing { background: #f97316; }
.dot.idle { background: #8b5cf6; }
#sidebar { width: 280px; background: #1a1a2e; border-left: 1px solid #2a2a4a; display: flex; flex-direction: column; overflow-y: auto; }
#controls { padding: 12px; border-bottom: 1px solid #2a2a4a; }
#controls h3 { font-size: 13px; margin-bottom: 8px; color: #888; }
#controls button { width: 100%; margin: 4px 0; padding: 8px; border: none; border-radius: 6px; cursor: pointer; font-size: 12px; font-weight: 600; }
#btn-generate { background: #2563eb; color: #fff; }
#btn-generate:hover { background: #1d4ed8; }
.btn-danger { background: #dc2626 !important; color: #fff; }
.btn-danger:hover { background: #b91c1c !important; }
.btn-success { background: #16a34a !important; color: #fff; }
.btn-success:hover { background: #15803d !important; }
#bot-info { padding: 12px; }
#bot-info h3 { font-size: 13px; margin-bottom: 6px; color: #888; }
#bot-info p { font-size: 12px; margin: 3px 0; }
#console-container { height: 180px; background: #0a0a14; border-top: 1px solid #2a2a4a; display: flex; flex-direction: column; }
#console-header { padding: 6px 12px; display: flex; justify-content: space-between; align-items: center; background: #12121f; border-bottom: 1px solid #2a2a4a; }
#console-header h3 { font-size: 12px; color: #888; }
#console-header button { background: #333; border: none; color: #aaa; padding: 3px 8px; border-radius: 4px; cursor: pointer; font-size: 11px; }
#console-output { flex: 1; overflow-y: auto; padding: 8px 12px; font-family: 'Consolas', monospace; font-size: 11px; line-height: 1.6; }
.log-info { color: #888; }
.log-warn { color: #eab308; }
.log-error { color: #ef4444; }
.log-time { color: #555; margin-right: 8px; }

