/* Minimal styling for Notion‑style dashboard */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f0f2f5;
}
.app-container { display: flex; height: 100vh; }
.sidebar { width: 260px; background: #fff; border-right: 1px solid #e0e0e0; padding: 20px; overflow-y: auto; }
.sidebar .logo { font-size: 1.5rem; margin-bottom: 1rem; }
.cluster-list { list-style: none; padding: 0; }
.cluster-list li { margin: 8px 0; cursor: pointer; color: #333; }
.cluster-list li:hover { color: #0066ff; }
.main-content { flex: 1; padding: 30px; overflow-y: auto; }
.welcome { color: #777; }
