/* ---------------- Existing Terminal Styles (example) ---------------- */

/* Example terminal container style */
.terminal-container {
  background-color: #000;
  color: #0f0;
  font-family: "Courier New", Courier, monospace;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #0f0;
  overflow-y: auto;
}

/* Example prompt-line style */
.prompt-line {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

/* Example input styling */
.command-input {
  background: none;
  border: none;
  color: inherit;
  flex: 1;
  font-size: 1em;
  padding: 5px;
}

/* Example process button style */
.process-btn {
  background-color: #222;
  border: 1px solid #0f0;
  color: #0f0;
  padding: 5px 10px;
  margin-left: 5px;
  cursor: pointer;
}

/* ---------------- Monkey Interface Styling ---------------- */

#monkey-interface {
  /* Hidden by default; will be set to display: flex when activated */
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #111;  /* Dark background for terminal vibe */
  color: #0f0;             /* Neon green text */
  padding: 20px;
  border: 2px solid #0f0;
  font-family: "Courier New", Courier, monospace;
  width: 80%;
  max-width: 500px;
  z-index: 1001;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#monkey-interface h1 {
  text-align: center;
  margin-bottom: 20px;
}

#monkey-interface p {
  margin-bottom: 15px;
  text-align: center;
}

#monkey-interface #street {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #0f0;
  width: 100%;
}

#monkey-interface button {
  background-color: #222;
  color: #0f0;
  border: 1px solid #0f0;
  padding: 8px 12px;
  margin: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-family: "Courier New", Courier, monospace;
}

#monkey-interface button:hover {
  background-color: #0f0;
  color: #222;
}
