.navbar {
  background-color: #212448;
  color: #fff;
  text-align: center;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.wrapper {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 20px;
}

.logo {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 15px;
  display: inline-block;
  text-align: center;
  height: 25px;
  background-image: url(/static/images/download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 2px 0 0 28px;
  text-decoration: none;
  font-family: AppleSDGothicNeo-Thin, Calibri;
}

.header {
  position: relative;
  width: 100%;
  background-color: #f8f8f8;
}

.wrapper {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 20px;
}

.header-text {
  position: relative;
  z-index: 9;
  text-align: center;
  font-family: Futura-Medium, Futura, "Lucida Grande", Segoe UI, Calibri, "serif";
  text-shadow: 1px 1px 0 #ddd;
  margin-top: 0;
  padding-top: 2em;
  padding-bottom: 1.5em;
  margin-bottom: 0;
  color: #111111;
  font-weight: bold;
}

.header-items {
  display: block;
  font-size: 2em;
  padding: 0 10px;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}





.footer {
  padding: 30px 0 50px 0;
  background-color: #0e1027;
}
.wrapper {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 20px;
}
.footer_inner {
  width: 25%;
  float: left;
  color: #fff;
  min-height: 190px;
}


table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
}
table,
td,
th {
  border:1px solid #ddd;
  text-align:left
}
table {
  border-collapse:collapse;
  width:100%
}
td,
th {
  padding:15px
}
th {
  background-color:#04aa6d;
  color:#fff;
  padding-right:20px
}


.ellipsis-name {
 max-width: 25em;
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
}


/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Navbar container */
nav {
  background-color: #212448;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1536px;
  margin: 0 auto;
  padding: 12px 20px;
}


/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #212448;
    flex-direction: column;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links a {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .hamburger {
    display: flex;
  }

  .nav-links.active {
    display: flex;
  }
}