#status-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  z-index: 999;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.status-left, .status-center, .status-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

#save-indicator {
  font-weight: 500;
  color: #10b981;
}

#blocks-count, #current-zoom, #resolution, #current-page, #project-name-footer {
  opacity: 0.8;
}

#fps-counter {
  color: var(--text-muted);
}

#server-status {
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
}

#server-status.online { background: rgba(16,185,129,0.15); color: #10b981; }
#server-status.offline { background: rgba(239,68,68,0.15); color: #ef4444; }

.error-badge {
  background: #ef4444;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-hover);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.btn-icon:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.quick-export-json {
  padding: 8px 16px;
  font-size: 0.9rem;
}