/**
 * Hub — ruhiger, übersichtlicher (weniger Reize, Layout neben Sidebar)
 */
.onyx-shell .main {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

.onyx-shell .page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.onyx-shell .welcome-banner {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px 18px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.onyx-shell .wb-text h3 {
  font-size: 18px;
  font-weight: 600;
}

.onyx-shell .wb-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink2);
}

.onyx-shell .stat-grid {
  gap: 10px;
  margin-bottom: 16px;
}

.onyx-shell .stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: none;
  min-width: 0;
}

.onyx-shell .stat-label {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--ink3);
}

.onyx-shell .stat-value {
  font-size: 26px;
}

.onyx-shell .stat-sub {
  font-size: 12px;
  color: var(--ink3);
}

.onyx-shell #hubStatusStrip {
  width: 100%;
  max-width: 100%;
  margin-bottom: 14px;
}

/* Status-Karte: kein Puls, kein Glow */
.onyx-shell .ops-status-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: none;
  max-width: 100%;
}

.onyx-shell .ops-status-card.degraded {
  border-color: rgba(255, 179, 71, 0.35);
  background: rgba(255, 179, 71, 0.06);
}

.onyx-shell .ops-status-card.outage {
  border-color: rgba(255, 92, 122, 0.35);
  background: rgba(255, 92, 122, 0.06);
}

.onyx-shell .ops-status-glow {
  display: none;
}

.onyx-shell .ops-status-pulse::before,
.onyx-shell .ops-status-pulse::after {
  display: none;
}

.onyx-shell .ops-status-pulse {
  width: 14px;
  height: 14px;
  position: relative;
}

.onyx-shell .ops-status-pulse .ops-dot {
  position: static;
  margin: 0;
  width: 12px;
  height: 12px;
  box-shadow: none;
}

.onyx-shell .ops-status-label {
  font-size: 16px;
  font-weight: 600;
}

.onyx-shell .ops-status-sub {
  font-size: 13px;
  color: var(--ink2);
  max-width: none;
}

.onyx-shell .ops-status-tile {
  background: var(--bg);
  border: 1px solid var(--line);
  backdrop-filter: none;
  min-width: 80px;
  padding: 10px 12px;
}

.onyx-shell .ops-tile-val {
  font-size: 15px;
}

.onyx-shell .ops-tile-lbl {
  font-size: 10px;
  letter-spacing: 0.3px;
}

.onyx-shell .ops-feed-panel {
  box-shadow: none;
  border-radius: 12px;
  min-width: 0;
}

.onyx-shell .ops-feed-head {
  background: var(--surface2);
  font-size: 14px;
  padding: 12px 14px;
}

.onyx-shell .ops-feed-body {
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.onyx-shell .panel {
  background: var(--surface);
  box-shadow: none;
  min-width: 0;
}

.onyx-shell .content-grid {
  width: 100%;
  max-width: 100%;
}

.onyx-shell .topbar h1 {
  font-size: 17px;
}

.onyx-shell .snav-item {
  font-size: 14px;
}

.onyx-shell .page img {
  max-width: 100%;
}

.onyx-shell .wb-avatar,
.onyx-shell .user-avatar {
  width: 46px !important;
  height: 46px !important;
  max-width: 46px !important;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .onyx-shell .content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .onyx-shell .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .onyx-shell .stat-grid {
    grid-template-columns: 1fr;
  }
  .onyx-shell .ops-status-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
