.nav-rounded {
  border-radius: 8px;
  border-spacing: 0;
  table-layout: fixed;
  overflow: visible;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.nav-rounded td,
.nav-rounded th {
  border-bottom: none;
  padding: 0;
}

.container {
  position: relative;
  z-index: 1;
}

.dropbtn {
  background-color: #023A53;
  text-align: center;
  color: white;
  padding: 1px;
  font-size: 15px;
  font-family: Verdana, sans-serif;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.dropdown {
  position: relative;
  display: block;
  z-index: 9999;
}

.dropdown-content {
  display: none;
  font-size: 14px;
  font-family: Verdana, sans-serif;
  text-align: left;
  position: absolute;
  z-index: 9999;
  left: 50%;
  transform: translateX(-25%);
  background-color: #f1f1f1;
  min-width: 175px;
  box-shadow: 0 8px 14px 0 rgba(0,0,0,.2);
  border-radius: 8px;
  padding: 6px 0;
}

.dropdown-content a {
  display: block;
  color: black;
  padding: 6px 10px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #6A8B9A;
  color: white;
  border-radius: 8px;
}

.dropdown:hover .dropdown-content {
  display: block;
  color: black;
}

.dropdown:hover .dropbtn {
  background-color: #6A8B9A;
}

.div_hover {
  background-color: #023A53;
  border: 0px solid #cccccc;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.div_hover:hover {
  background-color: #6A8B9A;
  transform: translateY(-1px);
}

.div_hover > a {
  display: block;
  width: 100%;
  color: white;
  text-decoration: none;
}