/* static/css/footer.css */

nav {
  background-color: #2082C0;
  color: #fff;
  padding: 10px;
  text-align: center;
  display:flex;
  justify-content:center;
  font-size: 0.95rem;
  /* Center the links */
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-li {
  color: #fff;
  display: inline-block;
  margin-right: 10px;
  padding: 0.5rem 1rem;
}

.footer-li:hover {
  color: #fff;
  border-radius: 3rem;
  background-color: #378CC5;
}

ul.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  nav {
    text-align: center;
  }

  li {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.copyright {
  margin-top: 1rem;
  font-size: 0.95rem;
}