/* WM_Site_Chrome — شريط تنقّل موحّد لكل الصفحات المستقلة (templates/*.php) */
.wm-sc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #080f1a;
  border-bottom: 1px solid #1e3a5a;
  padding: 10px 20px;
}
.wm-sc-logo {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: #60a5fa;
  text-decoration: none;
}
.wm-sc-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.wm-sc-nav::-webkit-scrollbar { display: none; }
.wm-sc-link {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.wm-sc-link:hover { background: #0f1f33; color: #dbeafe; }
.wm-sc-link.active { background: #1e3a5a; color: #60a5fa; border-color: #2c4d70; }

@media (max-width: 640px) {
  .wm-sc-topbar { padding: 8px 14px; gap: 10px; }
  .wm-sc-logo { font-size: 13px; }
  .wm-sc-link { font-size: 11px; padding: 5px 10px; }
}
