body {
  margin: 0;
  height: 100vh;
  background-color: black;
  color: #39ff14; /* Neon green */
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #111;
  display: flex;
  justify-content:space-evenly;
  gap: 1px;
  border-bottom: 1px solid #333;
}

header button {
  background-color: black;
  color: #39ff14; /* Neon green text */
  border: 0px solid #39ff14;
  cursor: pointer;
  flex: 1;
  font-size: 18px;
  transition: background-color 0.2s ease, color 0.2s ease;
  
}

header button:hover {
  background-color: #39ff14;
  color: black;
}

.center-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h3 {
  font-size: 85%;
  color: #39ff14;
}

.center-box button {
  background-color: black;
  color: #39ff14;
  border: 1px solid #39ff14;
  padding: 10px 20px;
  margin-top: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.center-box button:hover {
  background-color: #39ff14;
  color: black;
}
/* Forum styles integration */

#messages {
  flex: 1;
  padding: 1em;
  overflow-y: auto;
  border-bottom: 1px solid #333;
  background-color: black;
  color: #39ff14;
  font-family: Arial, sans-serif;
}

#input-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5em 1em;
  background-color: black;
  border-top: 1px solid #333;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  z-index: 10;
}

#input-area input {
  width: 100%;
  padding: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  box-sizing: border-box;
  background-color: black;
  color: #39ff14;
  border: 1px solid #39ff14;
  outline: none;
  font-family: Arial, sans-serif;
}

#input-area input::placeholder {
  color: #39ff1444; /* lighter neon for placeholder */
}

#send {
  width: 100%;
  padding: 0.5em;
  font-size: 1em;
  cursor: pointer;
  background-color: black;
  color: #39ff14;
  border: 0 solid #39ff14;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: Arial, sans-serif;
}

#send:hover {
  background-color: #39ff14;
  color: black;
  border-color: #39ff14;
}
