/* styles.css - all shared and admin styles */

/* Global & page-specific */
body.page-admin {
  background: #1e1e1e;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #5d6670;
  border-radius: 10px;
}

/* Form elements */
label {
  display: block;
  margin: 15px 0 5px;
}
input, button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
}
.save-btn {
  background: #27ae60;
  color: #fff;
  margin-top: 20px;
}

/* Guesses list */
.guesses-section {
  background: #333;
  padding: 30px;
  border-radius: 10px;
}
.guesses-section ul {
  list-style: none;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
}
.guesses-section li {
  padding: 8px;
  border-bottom: 1px solid #444;
}

/* Buttons */
#checkWinnerBtn {
  background: #3498db;
  color: #fff;
}
#winnerResult {
  white-space: pre-line;
  padding: 15px;
  background: #2c3e50;
  border-radius: 8px;
  color: #fff;
}
