/* General */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #ffffff; /* white header background */
}


  /* Main content should grow to fill space */
  main {
    flex: 1;
  }

.navbar-custom {
  background-color: #f8f8f8; /* navbar background */
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* slight shadow */
  border-top: 1px solid #e6e6e6; /* 1px solid black top border */
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: #000000; /* black text */
  font-weight: 600;
  font-size: 1.2rem; /* larger font */
}

.navbar-custom .nav-link:hover,
.navbar-custom .dropdown-item:hover {
  color: #007bff; /* optional hover color */
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1); /* makes the icon black */
}

/* Logo */
.logo {
  font-size: 28px;
  font-weight: bold;
  color: #003366;
  max-width: 50px;
}

/* Social icons */
.social-icons a {
  color: #003366;
  margin-left: 15px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #005bb5;
}

/* Footer styles */
footer {
  background-color: #f8f8f8; /* light gray background */
  border-top: 1px solid #e6e6e6; /* top border */
  color: #000000; /* black text */
  text-align: center;
  padding: 1rem;
}
