/* GLOBAL */
body {
  margin: 0;
  font-family: sans-serif;
  background: #222;
  color: #eee;
}

/* FORM CONTAINERS */
.form-container {
  margin: 60px auto 40px auto;
  max-width: 900px;
  background: #333;
  padding: 20px;
  border-radius: 4px;
}

.form-container h1,
.form-container h2,
.form-container h3 {
  margin-top: 16px;
  margin-bottom: 8px;
}

.form-container label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-container input[type="text"],
.form-container input[type="date"],
.form-container input[type="time"] {
  width: 100%;
  padding: 4px 6px;
  margin-top: 2px;
  box-sizing: border-box;
  border: 1px solid #555;
  background: #222;
  color: #eee;
}

.form-container button[type="submit"] {
  margin-top: 16px;
  padding: 8px 16px;
  background: #4a8;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

/* MENU PAGE */
.menu-container {
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-tile {
  background: #333;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #444;
  transition: background 0.2s;
}

.menu-tile:hover {
  background: #3a3a3a;
}

.menu-tile h2 {
  margin: 0 0 6px 0;
}

.tile-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #4a8;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 3px;
}

.menu-tile.disabled {
  opacity: 0.4;
}

.tile-button.disabled {
  background: #666;
  cursor: default;
}

/* CENTRED PAGE NAVIGATION BUTTONS */
.page-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 30px 0;
}

.nav-button {
  display: inline-block;
  padding: 12px 24px;
  background: #4a8;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.1rem;
  border: 2px solid #3a6;
  transition: background 0.2s, transform 0.1s;
}

.nav-button:hover {
  background: #5cbf5c;
}

.nav-button:active {
  transform: scale(0.97);
}

/* RED VARIANT FOR LOGOUT */
.nav-button.danger {
  background: #d66;
  border-color: #b44;
}

.nav-button.danger:hover {
  background: #e77;
}

/* LOGOUT BUTTON ON MAIN MENU PAGE */
.logout-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0 10px 0;
}

.logout-button {
  display: inline-block;
  padding: 12px 24px;
  background: #d66;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.1rem;
  border: 2px solid #b44;
  transition: background 0.2s, transform 0.1s;
}

.logout-button:hover {
  background: #e77;
}

.logout-button:active {
  transform: scale(0.97);
}

h1 {
    text-align: center;
    margin-top: 20px;
}
