
.marker-label {
  display: block;
  text-align: center;
  font-size: 14px;  
  font-weight: bold; 

  /* margin-left: 10px; spacing between the dot and the text */
  white-space: nowrap;
  line-height: 1;
  color: #fbe363;
  -webkit-text-stroke: 0.1px #000000;
 

}

.color-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%; /* makes the shape a circle */
  border: 1px solid #000000;
  margin-right: 1px; /* spacing between the dot and the text */
}


svg.leaflet-zoom-hide {
  z-index: 1000;
}
path.leaflet-interactive:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none;
  }
  
  .popup {
    /* background-color: rgba(255, 255, 255, 0.5); White background with 50% opacity */

  border-radius: none;
  padding: 0px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  box-shadow: none;
  }
  

  .country-container {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    margin-bottom: 5px;
  }

  .country-name {
    margin: 10px; /* Remove default margin to prevent line breaks */
    /* Other styles for the country name */
  }
  
  .popup h3 {
  color: #000;
  text-decoration: none;
  font-size: 29px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
  }

  .popup h4 {
    color: #000;
    text-decoration: none;
    font-size: 21px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    }
  
  /* Program text in pop up style */
  .popup p {
  color: #000000;
  font-size: 13px; 
  font-family: Arial, Helvetica, sans-serif;
  }
  
  /* Program website link style */
  .popup p a {
  color: #000000;
  text-decoration: underline;
  }
  .popup p a:hover {
  color: #fff;
  text-decoration: underline;
  }
  
  /* Add the following line to style the custom-popup container */
  .leaflet-popup.popup .leaflet-popup-content-wrapper {
    background-color: rgba(255, 255, 255, 0.9);
  /* border: 1px solid; */
  border-radius: 0px;
  box-shadow: white;
  }
  
  #map {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw; /* control map width to X0% of browser width, vw = viewport width - a unit of measurement that represents the percentage of the width of the browser viewport. 1vh = 1% of the height of the viewport. This unit is used for responsive web design to create layouts that adjust to different screen sizes.  */
  height: 100vh; /* control map height to X% of browser height */
  /* transform: translate(-50%, -50%); */
  /* border-radius: 5px;
  border-style: solid; 
  border: 10px solid transparent;
  border-image: linear-gradient(to bottom, #57BF80, rgba(87, 191, 128, 0)) 1 100%; */
  }
  
  .label-tooltip{
      background-color: rgba(255, 255, 255, 0);
      border: none;
      outline: none;
      text-align: center;
      padding: 10px;
      box-shadow: none;  /* THIS IS WHAT REMOVED THE BOX/BORDER AROUND THE PROGRAM LABELS */
  }
  
  .program-label {
  position: absolute;
  font-size: 14px;
  font-weight: lighter;
  text-align: center;
  color: white;
  background-color: transparent;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2px;
  white-space: nowrap;
  border: none;
  outline: none;
  
  }
  
  .play-button {
    background-color: rgb(128, 194, 194, 0.9);
    color: black;
    padding: 5px 10px;
    border: 1px solid black;
    border-radius: none;
    cursor: pointer;
    /* Add any other styles you want for your button here */
  }

  .slider text {
      fill: rgb(128, 194, 194); /* Change the color of the text on the slider handle */
      font-size: 24px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: bold;
    }
  
  .slider .track-inset {
      stroke: #E3E8DF; /* Changes the color of the slider itself */
    }
  
  
    
  .tooltip {
  /* background-color: 80C2C2 ; if you want the program label to have a background color */
  width: 150px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
  border: none;
  }
  
  
  
  .program-text {
  font-size: 11px;
  font-weight: regular;  
  text-align: center;
  -webkit-text-stroke: 0.25px #000000; /* adds text stroke */
  color: #E3E8DF; /* program label text color */ 
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  border: none;
  outline: none;
  }
