body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  margin: 0;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 100vh;
  background-image: url(/resources/banner);
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 90%;
  max-width: 500px;
  overflow-y: auto;
  max-height: 100%;
}

.hidden {
  display: none;
}

h1,
h2 {
  color: #1a1a1a;
}

#status-container,
#status-bar,
#admin-status {
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: #eef;
  border-radius: 4px;
  font-size: 0.9em;
  color: #557;
  min-height: 1.2em;
}

button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.2s;
  margin-top: 1rem;
}

button:hover {
  background-color: #0056b3;
}

.error {
  color: #dc3545;
  min-height: 1.2em;
}

.event-item {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
  cursor: pointer;
  text-align: left;
}

.event-item:hover {
  background-color: #f0f8ff;
}

#user-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: left;
}

#user-list li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

#user-list li:last-child {
  border-bottom: none;
}

.login-form-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.login-form-group label {
  font-weight: bold;
  flex-shrink: 0;
}

.login-form-group input {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-form-group button {
  flex-shrink: 0;
  margin-top: 0;
}