/* Minimal menu-only stylesheet (embedded via iframe) */
:root { --brand: #139ff0; }
body { margin: 0; font-family: system-ui, Arial, sans-serif; background: transparent; }
.menu { padding: 8px 0; }
.menu-item {
  display: inline-block;
  margin: 0 6px;
  padding: 8px 12px;
  background-color: var(--brand);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
}
.menu-item:hover { background-color: #0d7fc0; }

.menu .center {
    display: flex;
    justify-content: center;
    align-items: center;
}