.main-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
}

.title { font-size: 1.5rem; color: #444; padding-bottom: 20px; }

.report-list {
  list-style: none;
  display: grid;
  gap: 18px;
}


.report-list ul {
  margin-top: 6px;
  margin-left: 24px;
  padding-left: 10px;
  /* border-left: 2px solid var(--esa-blue-light-light); */
}

.connection-tooltip {
  position: absolute;
  background: white;
  border: 1px solid #335E6F;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  max-width: 300px;
  pointer-events: auto;
}

.tooltip-title {
  font-weight: bold;
  font-size: 14px;
  color: #335E6F;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e0e0e0;
}

.tooltip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}

.tooltip-item {
  padding: 4px 0;
  font-size: 12px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.tooltip-item:last-child {
  border-bottom: none;
}
