/** navbar */

.navbar {
  background-color: #f0f0f0;
  padding: 20px 0;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.navbar-header {
}

.navbar-brand {
  font-size: 1.5em;
  text-decoration: none;
  color: black;
}

.navbar-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar-item {
  margin-left: 20px;
}

.navbar-link {
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar-link:hover {
  color: #007bff;
}



/** popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.33);
  z-index: 1000;
}
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  z-index: 1001;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.05);
}
.disclaimer-text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.button-container {
  position: sticky;
  bottom: 20px;
  background: white;
}

