* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #0a0e14;
  color: #c8d6e5;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  overflow: hidden;
  height: 100vh;
}

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

#office-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1117;
  min-width: 0;
}

#office {
  border: 1px solid #1a2332;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100%;
}

#sidebar {
  width: 320px;
  background: #0f1923;
  border-left: 1px solid #1a2332;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#sidebar h1 {
  font-size: 14px;
  letter-spacing: 4px;
  color: #00ff88;
  margin-bottom: 16px;
  text-align: center;
}

#sidebar h2 {
  font-size: 11px;
  letter-spacing: 2px;
  color: #556677;
  margin: 16px 0 8px;
  text-transform: uppercase;
}

#status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #131d2a;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot.online { background: #00ff88; box-shadow: 0 0 6px #00ff88; }
.dot.offline { background: #ff4455; }

#agent-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.agent-card {
  background: #131d2a;
  border: 1px solid #1a2332;
  border-radius: 8px;
  padding: 10px 12px;
  transition: border-color 0.3s;
}

.agent-card.active {
  border-color: #00ff88;
}

.agent-card .name {
  font-size: 13px;
  font-weight: 700;
  color: #00ff88;
}

.agent-card .zone {
  font-size: 10px;
  color: #556677;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.agent-card .task {
  font-size: 11px;
  color: #8899aa;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#log {
  flex: 1;
  overflow-y: auto;
  font-size: 11px;
  line-height: 1.6;
  color: #556677;
}

#log .entry {
  padding: 2px 0;
  border-bottom: 1px solid #0d1117;
}

#log .entry .time {
  color: #334455;
}

#log .entry .msg {
  color: #8899aa;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #1a2332; border-radius: 2px; }
