body {
  margin: 0;
  padding: 0;
  background: #0d0d0d;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  font-family:'Courier New', Courier, monospace;
}

a {
  color: #ff9900;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffc107;
}

#container {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  display: none;
}

#chat-box {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  margin: 1rem;
  color: #adff2f;
  height: 43.5vh;
  overflow-y: auto;
  margin-top: 4rem;
  font-size: 1.2rem;
  line-height: 1.5;
  word-break:keep-all;
  overflow-x: hidden;
}

.user-text {
  color: #00d5ff;
}

#input-box {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#main-input {
  width: 80%;
  padding: 0.8rem 1rem;
  background: #1c1c1c;
  border: 2px solid #333;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;
  font-family:'Courier New', Courier, monospace;
}

.btns {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 30px;
  background: #00c3ff;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btns:hover {
  background: #0099cc;
}

#copy-convo {
  font-size: 0.9rem;
  margin-top: 10px;
  color: #aaa;
}

#copy-convo:hover {
  color: #fff;
  cursor: pointer;
}

/* Menu styles */
#fixed-menu-button {
  position: fixed;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  color: #fff;
  z-index: 100;
  cursor: pointer;
}

#menu {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 90vh;
  background: #111;
  color: #fff;
  z-index: 999;
  transition: top 0.4s ease-in-out;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

#menu-close-button {
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

#menu-content {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.pointer {
  cursor: pointer;
}

hr {
  border: none;
  height: 1px;
  background: #333;
  margin: 1rem 0;
}

/* Maintenance Placeholder */
#maintenance {
  display: none;
  text-align: center;
  padding: 2rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #main-input {
    width: 90%;
  }

  #chat-box {
    margin: 0.5rem;
    margin-top: 4rem;
    padding: 1rem;
    height: 25vh;
    font-size: 1.1rem;
  }

  #menu-content {
    font-size: 0.9rem;
  }
}
