html, body, #root {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 20px;
}

/* Port popup styles */
.port-popup {
  padding: 5px;
}

.port-popup h3 {
  margin: 0 0 8px 0;
  color: #2c3e50;
  font-size: 16px;
}

.port-popup p {
  margin: 5px 0;
  color: #34495e;
}

.port-popup .cruise-list {
  margin: 5px 0;
  padding-left: 0;
  list-style-type: none;
}

.port-popup .cruise-list li {
  padding: 2px 0;
  color: #7f8c8d;
}

.port-popup strong {
  color: #2c3e50;
}

/* Hide Leaflet zoom buttons completely */
.leaflet-control-zoom {
  display: none !important;
}

/* Semi-transparent style for the 'Aktuelle Kreuzfahrt' header */
.cruise-title-header {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a237e;
  text-align: center;
  max-width: 90vw;
  margin: 0 auto;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 900;
  box-shadow: 0 2px 16px rgba(30,40,80,0.08);
}

/* Global watermark ship icon */
.watermark-ship-icon {
  position: fixed;
  right: 32px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 999;
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.5));
}


