/* ===== HEADER ===== */

/* ===== HEADER ===== */

header {
  background: #0053D6;
  color: white;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 115px; /* standard height */
}

/* Make logo + brand stay on the left */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ✅ Global logo size enforced */
.brand img {
  height: 115px !important;
  width: auto;
  display: block;
}

/* ✅ MOVE NAV TO THE RIGHT */
nav {
  margin-left: auto;   /* <-- This pushes nav all the way to the right */
  display: flex;
  align-items: center;
}

/* Nav link styling */
nav a {
  color: white;
  text-decoration: none;
  margin-left: 28px;
  font-weight: 500;
  transition: opacity .2s;
  font-size: 16px;
}

nav a:hover { opacity: 0.7; }
nav a.active { font-weight: 700; text-decoration: underline; }

/* Mobile */
@media (max-width: 720px) {
  header {
    flex-direction: column;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  nav {
    margin-left: 0;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand img { height: 90px !important; }
}


/* ===== MAIN CONTENT SPACING ===== */
main {
  padding: 40px 30px;
}

/* ===== DASHBOARD CARDS ===== */

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.dashboard-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #E9EDF3;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.dashboard-card h3 {
  margin-top: 0;
}

/* ===== FOOTER ===== */

footer {
  background: #0053D6;
  color: white;
  padding: 50px 40px;
  margin-top: 80px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

footer h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 600;
}

footer a {
  display: block;
  color: white;
  opacity: 0.8;
  text-decoration: none;
  margin-bottom: 6px;
  transition: opacity .2s;
}

footer a:hover {
  opacity: 1;
}

/* Page background */
body {
  background: #F7F8FA;
}
