.demo-routebar {
  position: fixed;
  top: 16px;
  left: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid #dfe3f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(34, 41, 83, 0.12);
  backdrop-filter: blur(12px);
}

.demo-routebar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  color: #5f6485;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.demo-routebar a:hover {
  color: #171a54;
  background: #f1f2fb;
}

.demo-routebar a.active {
  color: #ffffff;
  background: #6350d9;
}

@media (max-width: 900px) {
  .demo-routebar {
    position: sticky;
    top: 0;
    left: auto;
    width: 100%;
    justify-content: center;
    padding: 7px 8px;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: 0 6px 18px rgba(34, 41, 83, 0.08);
  }

  .demo-routebar a {
    min-height: 30px;
    padding-inline: 8px;
  }
}

