/* EID HUB CMS – Shared Navigation Styles */

/* ─── Top Navigation ─────────────────────────────────────────────────────── */
.cms-topnav {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 54px;
  flex-shrink: 0;
  background: #ffffff;
  border-bottom: 2px solid #c5d4e0;
  box-shadow: 0 2px 8px rgba(31,98,142,.09);
  gap: 0;
}

.cms-brand {
  font-size: 16px;
  font-weight: 800;
  color: #1f628e;
  letter-spacing: -.4px;
  margin-right: 20px;
  white-space: nowrap;
  text-decoration: none;
}

.cms-navlinks {
  display: flex;
  align-items: stretch;
  gap: 2px;
  flex: 1;
  height: 100%;
}

.cms-navlink {
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  color: #4a6580;
  text-decoration: none;
  transition: background .15s, color .15s;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.cms-navlink:hover {
  background: #eef3f8;
  color: #1a2e3b;
}

.cms-navlink.active {
  color: #1f628e;
  font-weight: 700;
  background: rgba(31,98,142,.07);
  border-bottom-color: #1f628e;
}

.cms-navright {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.cms-user-pill {
  font-size: 13px;
  font-weight: 500;
  color: #3a5570;
  padding: 4px 12px;
  background: #e8f0f7;
  border: 1px solid #b8ccd8;
  border-radius: 20px;
  white-space: nowrap;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Subnav (file-specific toolbar row) ─────────────────────────────────── */
.cms-subnav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 16px;
  height: 38px;
  flex-shrink: 0;
  background: #f4f8fb;
  border-bottom: 1px solid #c5d4e0;
}

.cms-subnav-sep {
  flex: 1;
}

.cms-sublink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  height: 30px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #4a6580;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.cms-sublink:hover {
  background: #deeaf2;
  color: #1a2e3b;
}

/* ─── Utility: Mobile/Desktop-Sichtbarkeit ───────────────────────────────── */
.mobile-only  { display: none !important; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .cms-topnav { padding: 0 10px; }
  .cms-brand { font-size: 14px; margin-right: 10px; }
  .cms-navlink { padding: 0 9px; font-size: 13px; }
  .cms-user-pill { display: none; }
  .cms-subnav { padding: 0 8px; }
  .desktop-only { display: none !important; }
  .mobile-only  { display: block !important; }
}
