html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  padding-top: 60px; /* For fixed navbar */
}

/* ✅ FIXED NAV */
nav {
  background-color: #0b1e63;
  padding: 12px 0;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
}
nav a:hover,
nav a.active {
  background-color: #c8102e;
  color: #fff;
}

/* ✅ PAGE CONTENT WRAPPER */
.page-content {
  flex: 1;
  padding: 20px;
  text-align: center;
}

/* ✅ FOOTER STICKY */
footer {
  background-color: #001F5B;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  line-height: 1.5;
}
