:root {
  --brand: #003366;
  --ink: #111827;
  --ink-dim: #6b7280;
  --bg: #ffffff;
  --muted: #f3f4f6;
  --line: rgba(0, 51, 102, 0.15);
  --shadow: 0 2px 6px rgba(0,0,0,0.1);
}

body {
  background-image: url("../../assets/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  color: white;
  padding: 50px;
  position: relative;
}

.header-inline h1 {
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}

.back-link {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  background-color: #ffffff;
  color: #003366;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
}

.back-link:hover {
  background-color: #cce0ff;
}

section {
  padding: 30px 20px;
  /* max-width: 1100px; */
  margin: 20px 20px 20px 20px;
}

h2 {
  color: var(--brand);
  margin-bottom: 15px;
  border-left: 5px solid var(--brand);
  padding-left: 10px;
}

form {
  display: grid;
  gap: 15px;
  background: var(--muted);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

form input, form textarea, form select {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

form button {
  background: var(--brand);
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

form button:hover {
  background: #002244;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 15px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

th, td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
}

th {
  background: var(--brand);
  color: white;
}

tr:nth-child(even) {
  background: var(--muted);
}

.officer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.officer {
  background: var(--muted);
  padding: 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

footer {
  text-align: center;
  padding: 20px;
  background: var(--muted);
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--ink-dim);
}
