body {
  background: linear-gradient(135deg, #240046, #000428);
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: linear-gradient(90deg, #240046, #000428);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

header h1 {
  margin: 0;
  color: #fff;
}

nav a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00ffff;
}

.logout-button {
  background: transparent;
  color: #fff;
  padding: 5px 10px;
  border: 1px solid #00ffff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.logout-button:hover {
  background: #00ffff;
  color: #000428;
}

/* New main styling */
main {
  max-width: 800px;
  margin: 20px auto;  /* centers the main content */
  margin-bottom: 60px; /* added to prevent footer overlay */
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  /* Optional: text alignment if desired */
  text-align: left;
}

/* Updated footer styling: fixed at bottom and relatively small */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.8em;
  padding: 10px 0;
  background: linear-gradient(90deg, #240046, #000428);
}

