/* join.css */

body.join-page {
  font-family: "Segoe UI", sans-serif;
  background: radial-gradient(circle, #065c2f 60%, #003d1f 100%);
  color: white;
  min-height: 100vh;
  margin: 0;
  padding: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-container {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1.2em;
  padding: 2em 3em;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.5);
  text-align: center;
}

.room-code {
  color: gold;
  font-size: 1.4em;
  text-shadow: 0 0 10px black;
}

.join-form input[type="text"] {
  padding: 0.6em;
  width: 60%;
  margin-bottom: 1em;
  font-size: 1em;
  border: none;
  border-radius: 0.4em;
}

.join-form button,
button {
  padding: 0.6em 1.2em;
  font-size: 1em;
  background: #4caf50;
  border: none;
  color: white;
  border-radius: 0.4em;
  cursor: pointer;
}

button:hover {
  background: #388e3c;
}

#room-status ul {
  list-style: none;
  padding: 0;
  margin: 1em 0;
}

#room-status li {
  margin: 0.4em 0;
  font-size: 1.1em;
}

.ready {
  color: lightgreen;
  font-weight: bold;
}
