.graphs {
  font-family: sans-serif;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.controls {
  display: flex;
  justify-content: left;/*/center;*/
  gap: 20px;
  margin-bottom: 10px;
  margin-left: 10%;
}

.controls > div {
  display: flex;
  align-items: center;
}

.controls select {
  -moz-appearance: auto;
  -webkit-appearance: auto;
  border-bottom-style: solid;
  background-color: #ECEFF1;
}

.controls label {
  margin-right: 10px;
}

.chart-container {
/*  width: 90%;*/
  height: 600px;
}

.rtt_canvas {
  height: 100% !important;
}

.hidden {
  display: none;
}

.probe-item:hover {
   text-decoration: underline;
}


/* HTML: <div class="loader"></div> */
.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #25b09b;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}


/* probe map styles */

    #map-container {
      width: 95%;
      height: 500px;
      margin: 20px auto;
      border: 1px solid #ccc;
    }

    #map {
      width: 100%;
      height: 100%;
    }

    .tooltip {
      position: absolute;
      background-color: rgba(255, 255, 255, 0.95);
      border-radius: 5px;
      padding: 10px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
      font-family: sans-serif;
      max-width: 400px;
      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .tooltip h3 {
      margin-top: 0;
      font-size: 1.2em;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .tooltip .close-button {
      cursor: pointer;
      margin-left: 10px;
    }

    .tooltip table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }

    .tooltip th,
    .tooltip td {
      padding: 5px;
      border: 1px solid #ddd;
    }

    circle:hover {
      cursor: pointer;
    }

    .country-label {
      fill: #333;
      font-size: 10px;
      text-anchor: middle;
    }
