/* Universal top status bar — dark, compact */
.edenix-status-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: 36px;
  background: linear-gradient(180deg, #1e2229 0%, #16191e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Microsoft JhengHei", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.edenix-status-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  gap: 10px;
}

.edenix-status-left-wrap {
  position: relative;
  flex: 0 1 auto;
  max-width: 42%;
  min-width: 0;
}

.edenix-nav-module-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  height: 26px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid rgba(102, 126, 234, 0.35);
  background: rgba(102, 126, 234, 0.12);
  color: #e8eaed;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
}
.edenix-nav-module-btn:hover {
  background: rgba(102, 126, 234, 0.22);
  border-color: rgba(102, 126, 234, 0.5);
}
.edenix-nav-module-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.edenix-nav-chevron {
  flex-shrink: 0;
  font-size: 10px;
  opacity: 0.85;
}

.edenix-nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  min-width: min(260px, 92vw);
  max-width: 92vw;
  max-height: min(70vh, 420px);
  overflow: auto;
  background: #1e2229;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  z-index: 10001;
}
.edenix-nav-dropdown-inner {
  padding: 6px 0;
}
.edenix-nav-item {
  display: block;
  padding: 8px 14px;
  color: #e8eaed;
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.edenix-nav-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.edenix-nav-item:first-child {
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 4px;
  padding-bottom: 10px;
}

.edenix-status-center-brand {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  color: #e8eaed;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0.96;
}
.edenix-status-center-brand:hover {
  color: #fff;
}
.edenix-public-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: middle;
}

.edenix-status-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.edenix-status-user {
  color: #c4c7cc;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.edenix-status-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #e8eaed;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}
.edenix-status-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.edenix-below-bar {
  padding-top: 36px;
  min-height: 100vh;
  box-sizing: border-box;
}

.edenix-app-body {
  margin: 0;
  min-height: 100%;
}
