body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #f9f9f9;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-label {
  margin: 0;
}

.logout-link {
  margin-left: 20px; /* Adds space between the username and the logout link */
}

.top-bar a {
  text-decoration: none;
  color: white;
  background-color: #007BFF;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
}

.top-bar a:hover {
  background-color: #0056b3;
}

.divider {
  margin: 0;
  border: none;
  height: 1px;
  background-color: #ccc;
}

.spacer {
  height: 51px;
}

.content {
  padding: 20px;
}

.center-text {
  text-align: center;
}

.center-form {
  display: flex;
  justify-content: center;
  /*align-items: center; /* optional: for vertical centering if needed */
  /*min-height: 100vh;   /* optional: for vertical centering if needed */
}

.center-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}