/* ==========================================================
   menubar.css - shared light 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: #d6e2f0;
  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: #1a3050;
  cursor: default;
  white-space: nowrap;
}

.menu-item:hover {
  background: #88aed6;
  color: #ffffff;
}

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

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

a {
  color: #0a40a0;
}

a:visited {
  color: #5a20a0;
}

a:hover {
  color: #d03000;
}

a:active {
  color: #ff6000;
}
