body {
  font-family: system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #4a1e2b;
}

header a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

main {
  padding: 1rem;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 0.5rem;
  border-bottom: 1px solid #ddd;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
}

.hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.hero-image {
  display: block;
  width: 100%;
  height: 280px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-overlay h1 {
  color: #fff;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-overlay p {
  color: #f3e3d3;
  margin: 0;
  max-width: 32rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.welcome-links {
  display: flex;
  gap: 1rem;
}

header {
  align-items: center;
}

.logout-form {
  margin-left: auto;
}

.logout-form button {
  background: none;
  border: none;
  color: white;
  font-weight: bold;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.login-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2a1015;
}

.login-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 20rem;
}

.login-form h1 {
  margin: 0;
  text-align: center;
  color: #4a1e2b;
}

.login-error {
  color: #a12626;
  margin: 0;
}

.login-form button {
  background: #4a1e2b;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.6rem;
  font-weight: bold;
  cursor: pointer;
}
