/* Reset default styles */
body, h1, form, input, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header styles */
header {
  background-color: #ff4081;
  padding: 20px;
}

h1 {
  color: white;
  text-align: center;
  font-size: 32px;
}

/* Container styles */
.container {
  max-width: 400px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Form styles */
form {
  margin-bottom: 20px;
}

.btn-group {
  display: flex;
  gap: 10px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 16px;
}

button[type="submit"], #draw-button, #reset-button {
  width: 100%;
  padding: 8px;
  background-color: #ff4081;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

#reset-button {
  background-color: #007bff;
}

#reset-button:hover {
  background-color: #1367c0;
}

button[type="submit"]:hover, #draw-button:hover {
  background-color: #d5004e;
}

button[type="submit"]:focus, #draw-button:focus {
  outline: none;
}

/* Participants list styles */
#participants-list {
  margin-bottom: 20px;
}

/* Winner display styles */
#winner-display {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
