/*css de viewBase*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #08318a;
}

header {
  background-color: #08318a;
  color: white;
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 1.8em;
  margin: 0;
  font-weight: bold;
}

.header-links ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.header-links li {
  margin: 0 1em;
}

.header-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.header-links a:hover {
  color: #10b1ba;
}

.header-links a:visited {
  color: white;
}

a.nav-link:link {
  color: white;
  text-decoration: none;
}
a.nav-link:visited {
  color: white;
  text-decoration: none;
}
a.nav-link:hover {
  color: white;
  text-decoration: none;
}
a.nav-link:active {
  color: white;
  text-decoration: none;
}

/* === Dropdown "Imports" === */
.header-links li.dropdown {
  position: relative;
}

.header-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 220px;
  background: #dce4eb;
  border: 2px solid #08318a;
  border-radius: 0.5em;
  padding: 0.5rem 0;
  margin: 0;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.header-links li.dropdown:hover > .dropdown-menu,
.header-links li.dropdown:focus-within > .dropdown-menu,
.header-links .dropdown-menu:hover {
  display: block;
}

.header-links .dropdown-menu li {
  margin: 0;
  list-style: none;
}
.header-links .dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #08318a;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

.header-links .dropdown-menu a:hover {
  background: #10b1ba;
  color: #fff;
}

.header-links .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-footer {
  background-color: #08318a;
  color: #fff;
  padding: 1em 2em;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #10b1ba;
}

html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main#contenu {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
}
