/* css styles */
table.dataTable thead th {
  background-color: white !important;
  color: black !important;
  font-weight: bold;
}
.dataTables_wrapper, 
.dataTables_length, 
.dataTables_filter, 
.dataTables_info, 
.dataTables_paginate {
  background-color: white !important;
  color: black !important;
}
.dataTables_filter input {
  background-color: white !important;
  color: black !important;
}
table.dataTable {
  border: 1px solid black !important;
}

/* Make all iframes larger and full page width */
.big-iframe {
  max-width: 1600px;   /* expand total width */
  width: 1300px;
  height: 900px;
  margin: 0 auto;
  position: relative;
  left: 40px;          /* pushes iframe to the right */
  border: none;
}



.big-iframe iframe {
  width: 100%;
  height: 100%;
}

/* ===== Maritime hero: animated globe / shipping lanes ===== */
.hero {
  position: relative;
  /* Break out of Quarto's content container to span the full viewport width */
  width: 100vw;
  left: 50%;
  margin-left: -45vw;
  margin-top: 0;
  margin-bottom: 2rem;
  padding: 0;
  /* Fill the viewport below the navbar (~56px in Bootstrap/Lux) */
  min-height: calc(100vh - 56px);
  background: #000409;
  overflow: hidden;
  display: flex;
  align-items: center;     /* vertically center the hero copy */
}

.hero #globe-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 4rem;
  max-width: 760px;
  color: #e8f1ff;
}

/* Prevent the 100vw breakout from creating a horizontal scrollbar */
html, body { overflow-x: hidden; }

.hero-content h1,
.hero-content h2,
.hero-content p {
  color: #e8f1ff;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem 0;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #b9c8dc;
  max-width: 560px;
}

@media (max-width: 768px) {
  .hero { min-height: 55vh; }
  .hero-content { padding: 3rem 1.5rem 2.5rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero #globe-bg { display: none; }
  .hero { background: radial-gradient(ellipse at center, #061421 0%, #000409 70%); }
}
