body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  /* 🗺️ Map containers */
  #comparison-container {
    position: absolute;
    top: 0;
    bottom: 60px; /* Reserve space for footer */
    width: 100%;
  }
  
  #left-map, #right-map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
  }
  
  /* 📰 Headline styling */
  #headline-container {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  #headline-container h2 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
  }
  
  #headline-container p {
    margin: 4px 0 0;
    font-size: 12px;
    padding-right: 20px;
  }
  
  /* 🎨 Legend container styling */
  #legend-container {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    text-align: center;
  }
  
  .legend {
    width: 150px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 6px;
    border-radius: 4px;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
  }
  
  .legend-title {
    font-weight: bold;
    margin-bottom: 3px;
  }
  
  .color-bar {
    display: flex;
    height: 10px;
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
  }
  
  .color-bar div {
    flex: 1;
  }
  
  /* Label positioning between color segments */
  .legend-labels {
    position: relative;
    height: 14px;
    margin-top: 3px;
  }
  
  .legend-labels span {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
  }
  
  /* exact midpoint placements */
  .legend-labels span:nth-child(1) { left: 0%; transform: translateX(0); }
  .legend-labels span:nth-child(2) { left: 16.67%; }  /* between color 1 and 2 */
  .legend-labels span:nth-child(3) { left: 33.34%; }  /* between color 2 and 3 */
  .legend-labels span:nth-child(4) { left: 50.01%; }  /* between color 3 and 4 */
  .legend-labels span:nth-child(5) { left: 66.68%; }  /* between color 4 and 5 */
  .legend-labels span:nth-child(6) { left: 83.35%; }  /* between color 5 and 6 */
  
  /* 🦶 Footer styling */
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 10px;
    font-size: 12px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
  }
  
  .footer-left {
    flex: 1;
    padding-right: 10px;
  }
  
  .footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .footer-logo {
    max-height: 40px;
    height: auto;
  }
  
  @media (max-width: 600px) {
    footer {
      flex-direction: column;
      text-align: center;
      font-size: 11px;
    }
    .footer-right {
      margin-top: 5px;
    }
    .footer-logo {
      max-height: 30px;
    }
  }