.app {
  display: grid;
  grid-template-columns: 280px 1fr;
  height: 100vh;
  min-height: 0;
}

.main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  min-height: 0;
  background: var(--bg);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid var(--border);
  background: rgba(25, 24, 23, .92);
}

.topbar-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 10px;
}

.title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 650;
}

.logout {
  border-radius: 8px;
  padding: 8px 10px;
  background: transparent;
  color: var(--muted);
}

.logout:hover {
  background: var(--panel-soft);
  color: var(--text);
}
