/* ==========================================================
   menubar2.css - shared dark menubar (embedded via iframe)
   root font-size matches the pages so rem sizes scale alike
   ========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: clamp(15px, 0.45vw + 6.3px, 30px);
  height: 100%;
}

body {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.1rem;
  background: #0c140e;
  height: 100%;
}

#strip {
  display: flex;
  gap: 0.18rem;
  align-items: center;
  min-height: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.menu-item {
  padding: 0.09rem 0.64rem;
  color: #33e06a;
  cursor: default;
  white-space: nowrap;
}

.menu-item:hover {
  background: #00a040;
  color: #02140a;
}

.menu-item a {
  text-decoration: none;
}

/* ---------- links ---------- */

a {
  color: #00ff88;
}

a:visited {
  color: #66dd44;
}

a:hover {
  color: #ccffb0;
  text-shadow: 0 0 0.55rem rgba(0, 255, 120, 0.8);
}

a:active {
  color: #ffffff;
}
