body {
  background: #0b0b0b;
  color: #e3e3e3;
  font-family: "IBM Plex Mono", monospace;
  display: flex;
  justify-content: center;
  padding: 40px;
}

#container {
  width: 700px;
  text-align: center;
}

h1 {
  letter-spacing: 4px;
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  color: #999;
  margin-bottom: 30px;
}

#oracle-selector button {
  margin: 5px;
  padding: 12px 20px;
  background: #222;
  border: 1px solid #555;
  color: white;
  cursor: pointer;
}

#oracle-selector button.active {
  border-color: #c23df3;
  background: #3a004d;
}

#user-input {
  width: 100%;
  height: 120px;
  background: #111;
  border: 1px solid #333;
  color: white;
  padding: 10px;
  margin-top: 20px;
}

#generate-btn {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 16px;
  background: #5a0bb5;
  color: white;
  border: none;
  cursor: pointer;
}

#generate-btn:hover {
  background: #7b1fe1;
}

#output {
  margin-top: 30px;
  padding: 20px;
  background: #111;
  border: 1px solid #333;
  min-height: 150px;
  white-space: pre-wrap;
}

nav {
  text-align: center;     
  width: 100%;
  margin-bottom: 60px;
}

nav a {
  margin: 0 10px;
  color: #c23df3;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

#ethics-btn {
  background: #5a0bb5;
  color: white;
  padding: 10px 20px;
  border: none;
  margin-bottom: 25px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-family: "IBM Plex Mono", monospace;
}

#ethics-btn:hover {
  background: #7b1fe1;
}

.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #0f0f0f;
  margin: 10% auto;
  padding: 30px;
  border: 2px solid #5a0bb5;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  color: #e3e3e3;
  box-shadow: 0 0 20px rgba(122, 41, 255, 0.4);
}

#close-modal {
  float: right;
  font-size: 26px;
  cursor: pointer;
  color: #aaa;
}

#close-modal:hover {
  color: #fff;
}

a:link {
  color: #c23df3;
}


a:visited {
  color: #c23df3;
}


a:hover {
  color: #c23df3;
}


a:active {
  color: #c23df3;
}