body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-group {
  display: flex;
  align-items: center;      /* ✔️ centra verticalmente i loghi fra loro */
  gap: 1rem;
}

.logoESA {
  height: 40px;
  width: auto;
}

.logoCHIME {
  height: 100px;
  width: auto;
}

.banner-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
}

  .navbar {
    background-color: #2a7b9b;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  .container {
    max-width: 1200px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    display: flex;
    gap: 2rem;
  }
  
  .content {
    flex: 1;
  }
  
  .toc {
    width: 250px;
  }
  
  .toc h2 {
    font-size: 1.2rem;
    color: #2a7b9b;
    margin-bottom: 0.5rem;
  }
  
  .toc ul {
    list-style: none;
    padding: 0;
  }
  
  .toc li {
    margin-bottom: 0.5rem;
  }
  
  .toc input[type="checkbox"] {
    margin-right: 0.5rem;
  }
  
  .color-box {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 0.5rem;
    vertical-align: middle;
    border-radius: 2px;
  }
  
  .green { background-color: #00B300; }
  .red { background-color: #FF0000; }
  .blue { background-color: #0000FF; }
  
  #map {
    height: 500px;
    width: 100%;
  }
  
  #featureList {
    margin-top: 1rem;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 4px;
  }
  
  #featureItemsTable {
    width: 100%;
    border-collapse: collapse;
  }
  
  #featureItemsTable th,
  #featureItemsTable td {
    border: 1px solid #ccc;
    padding: 8px;
  }
  
  #featureItemsTable th {
    background: #f0f0f0;
  }
  
  footer {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 2rem;
  }
  
  #tooltip {
    position: absolute;
    padding: 4px 8px;
    background: white;
    border: 1px solid #999;
    border-radius: 4px;
    font-size: 0.85rem;
    display: none;
    pointer-events: none;
    z-index: 1001;
  }
  
  #infoModal {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    padding: 5px;
    z-index: 1000;
    /* border-radius: 12px; */
  }

  #closeModal {
    float:right; 
    background:none; 
    border:none; 
    font-size:16px; 
    cursor:pointer;
    display: none;
  }

  .zoom-icon {
  margin-left: 8px;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  }
  .zoom-icon:hover {
    opacity: 0.7;
  }

  .coord-col,
  #featureItemsTable td.coord-col {
    width: 50px;  /* puoi aumentare se serve più spazio */
    white-space: nowrap;
    text-align: left;
}  
/* Independent toolbar bar */
.toolbar-bar{
  background-color: #1f6f8b;     /* slightly darker than header */
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
  
/* Toolbar content */
.toolbar{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1rem;

  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Toolbar link as button */
.toolbar a{
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;

  padding: 0.35rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
}

.toolbar a:hover{
  background: rgba(255,255,255,0.25);
}
