body.page-with-nav {
  padding-top: 60px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.nav-button + .nav-button {
  margin-left: 10px;
}

.nav-button {
  background-color: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 4px;

  font-size: 1rem;
  display: inline-block;
  padding: 6px 12px;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
}

.nav-button:hover {
  background-color: #2563eb;
}

.info-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 1500;
}

.info-content {
  background-color: #1e293b;
  color: #f8fafc;
  padding: 20px;
  border-radius: 8px;
  max-width: 90%;
  text-align: center;
}
