body {
  font-family: 'Source Sans Pro', arial, helvetica, sans-serif;
  padding-bottom: 50px;
}
h3 {
  margin-top: 50px;
}
li {
  margin: 25px 50px 0 0;
}
table {
  width: 1400px;
  margin: 0 50px 0 50px;
}
td {
  width: 50%;
  vertical-align: top;
  padding-right: 60px;
}
.hover-underline {
  text-decoration: none;
}
.hover-underline:hover {
  text-decoration: underline;
}

.legend-scrollable {
  pointer-events: all;
}



.legend-scrollable text {
  font-family: sans-serif;
  fill: #333;
}

.legend-scrollable text.legendItem {
  cursor: pointer;
  transition: fill 0.2s ease;
}

.legend-scrollable text.legendItem:hover {
  fill: #000;
  font-weight: bold;
}

.scrollbar {
  transition: y 0.1s ease;
}

/* Contenitore per label e checkbox */
.filter-container {
  display: flex;
  align-items: center; /* Allinea verticalmente */
  gap: 8px; /* Spazio tra label e checkbox */
  /*margin-bottom: px; /* Spazio sotto il filtro */
  margin-left: 200px;
}



/* Stile per la label */
.filter-container label {
  font-size: 14px;
  color: #333;
}

/* Stile per il checkbox */
.filter-container input[type="checkbox"] {
  width: 16px;
  height: 16px;
}



.table-in-modal {
  width: 100%;
  max-width: 100%;
  margin: 0;
  table-layout: fixed;
  border-collapse: collapse;  
  border: 1px solid #d0d7de;           /* bordo perimetrale della tabella */
  background: #fff; 

}
.table-in-modal th,
.table-in-modal td {
  width: auto;
  padding: 6px 8px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  border: 1px solid #e2e8f0;           /* bordo interno tra celle */
}


/* (Opzionale) stile header */
.table-in-modal thead th {
  background: #f6f8fa;
  font-weight: 600;
  text-align: center;
}



