body {
  background-color: #f8f9fa; /* Light compatible bg */
}

nav.navbar {
  background: linear-gradient(45deg, #004080, #007bff);
  border-bottom: 1px solid #0056b3;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

footer {
  background: linear-gradient(45deg, #007bff, #004080);
  border-top: 1px solid #0056b3;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  color: white;
}

h5.bg-primary {
  border-radius: 0;
  padding: 0.75rem;
  margin-bottom: 1rem;
  width: 100%;
}

/* Toolbar styling */
.toolbar-container {
  background-color: #004080;
  padding: 5px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.toolbar a {
  color: white;
  font-size: 14px;
  padding: 5px;
  text-decoration: none;
}

.toolbar a:hover {
  color: #ffc107;
}

/* Form buttons styling */
#btnForm button {
  margin: 3px 5px 3px 0;
}

