body {
  font-family: Arial, sans-serif;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  display: flex;
}

#chat-screen {
  text-align: left;
  margin: 0 auto;
  padding: 10px;
  background: #fff;
  height: 625px;
  width: 90%;
  max-width: 1000px;
  border: 5px solid #a7a7a7;
  border-radius: 10px;
}

#start-screen {
  text-align: center;
  align-items: center;
  justify-content: center;
  height: 600px;
  width: 90%;
  max-width: 1000px;
  border: 5px solid #a7a7a7;
  border-radius: 10px;
  background: #fff;
}

#exit-button {
  cursor: pointer;
}

#chat-messages {
  height: 74%;
  overflow-y: scroll;
  border-bottom: 1px solid #ccc;
}

.chat-control {
  width: 90%;
  padding: 10px;
  margin-bottom: 10px;
  height: auto;
}

.btn {
  background-color: #66AADD;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin-left: 2px;
  margin-bottom: 0px;
  width: 45%;
}

.btn:hover {
  /*background-color: #4cae4c;*/
  filter: brightness(120%);
}

button {
  cursor: pointer;
}

/* Add styling for system messages */
.system-message {
  color: #5bc0de; /* Blue color, customize as needed */
  font-style: italic;
  font-family: monospace;
  font-size: 17px;
  margin-top: 10px;
}

systemnm {
  border-radius: 4px;
  border: 2px solid rgba(243, 156, 18, 1);
  font-weight: bold;
  background: #888;
  color: white;
  font-size: 100%;
  border-radius: 4px;
  padding: 1px 10px;
}

sysmsg {
  color: rgba(240, 0, 0, 1);
}

/* Add styling for user messages */
.user-message {
  color: #4cae4c; /* Green color, customize as needed */
  margin-top: 10px;
  font-family: FreeMono, monospace;
  font-size: 17px;
}

nicknm {
  border-radius: 4px;
  border: 2px solid rgba(243, 156, 18, 1);
  font-weight: bold;
  background: #888;
  color: white;
  font-size: 100%;
  border-radius: 4px;
  padding: 1px 10px;
}

usermsg {
  color: black;
  font-weight: bold;
}

.container {
  display: block;
  height: auto;
  margin: 1%;
  width: 500px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

@media (max-width: 500px) {
  .container {
    width: 90%;
  }
}

h2 {
  color: #333;
}

form {
  width: 100%;
  box-sizing: border-box;
}

label {
  text-align: center;
  display: block;
  margin-bottom: 5px;
  color: #555;
}

.input-group-addon {
  background-color: #f4f4f4;
  padding: 10px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 5px 0 0 5px;
  height: auto;
  margin-bottom: 10px;
}

.form-control {
  width: calc(85% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  height: auto;
}

.help-block {
  color: #d9534f;
}

/* Language Buttons */
.enUS,
.elGR {
  text-decoration: none;
  position: right;
  height: 15px;
  width: 25px;
}
a {
  text-decoration: none; /* Remove underline from links */
}

.enUS:hover,
.elGR:hover {
  filter: brightness(120%);
}
