@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --border-color: ##a3a3a3;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --border-color: ##212120;
    }
  }
  table {
    margin-top: 5%;
    width: 100%;
    border-collapse: collapse;
  }
  th, td {
    text-align: center;
    font-family: 'Work Sans' sans-serif;
    font-size: 14pt;
    padding: 8px;
  }
  th[colspan] {
    text-align: center;
  }
  .bottom-border{
    border-bottom: 1px solid var(--border-color);
  }
  .colgroup-divider {
    border-left: 1px solid var(--border-color); /* Vertical line between colgroups */
  }
    .report-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 14pt;
  }

          /* Custom popup style */
        .custom-popup .leaflet-popup-content-wrapper {
            background-color: rgba(255,255,255, 0.9);
            color: black;
            border-radius: 8px;
            padding: 1px;
            padding-right: 10px;
            padding-left: 10px;
        }

        .custom-popup .leaflet-popup-tip-container {
            visibility: hidden;
        }

        .custom-popup .leaflet-popup-content {
        margin: 0;
        line-height: 1.2; /* Adjust line height to fit the text closely */
        white-space: nowrap; /* Ensure the text does not wrap */
    }
    .custom-popup .leaflet-popup-content-wrapper, 
    .custom-popup .leaflet-popup-content {
        width: auto !important; /* Ensure the width is auto-adjusted */
        max-width: none !important; /* Remove max-width restriction */
    }

    .custom-popup .leaflet-popup-content {
         margin: 5px;
      }
      /* "font-family: 'Work Sans', sans-serif; */

     .legend {
            line-height: 18px;
            color: #555;
            background: rgba(255,255,255, 0.8);
            padding: 6px 8px;
            font: 16px 'Work Sans', sans-serif;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
        }
        .legend .gradient {
            background: linear-gradient(to right, #0518f5, #75fbfd, #77fb4c, #ffff54, #ea3724);
            height: 20px;
            margin-bottom: 10px;
            border-radius: 5px;
        }

        .legend .title {
          font: 14px 'Work Sans', sans-serif;
         margin-bottom: 5px;
          text-align: center; /* Center the title */

        }
        
        .legend .labels {
            display: flex;
            justify-content: space-between;
             width: 120px; /* Ensure the labels span the same width as the gradient */

        }
        .legend .labels span {
          font: 14px 'Work Sans', sans-serif;
            /* font-size: 12px; */
        }

        .download-button {
            font-family: 'Work Sans', sans-serif;
            font-size: 12pt;
            background-color: #68ab59;
            color: white;
            padding: 5px 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .download-button:hover {
            background-color: #5a944d;
        }