/* General page setup */
body {
  background: #000;
  color: #fff;
  font-family: monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

/* The container "screen" */
.mini-screen {
  width: 600px;
  padding: 20px;
  border: 2px solid #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  text-align: center;
  background: transparent;
  border-radius: 8px;
}

/* Inputs */
input[type="text"], input[type="password"] {
  font-family: monospace;
  font-size: 18px;
  padding: 8px;
  width: 200px;
  margin: 8px 0;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #111;
  color: #fff;
  outline: none;
  text-align: center;
}

/* Buttons */
button {
  font-family: monospace;
  font-size: 18px;
  padding: 8px 16px;
  margin: 10px 5px;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #111;
  color: #fff;
  transition: 0.3s;
}

button:hover {
  background: #fff;
  color: #000;
}

/* Results table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 14px;
}

td, th {
  border: 1px solid #fff;
  padding: 6px;
  text-align: center;
}

th {
  background: #111;
  font-weight: bold;
}

td {
  background: #222;
}

/* Score text */
p {
  margin-top: 15px;
  font-size: 16px;
}
