body {
    font-family: 'Roboto mono';
  margin: 0; /* Removes default margin */
  padding: 0; /* Removes default padding */
  width: 100%; /* Full width of the viewport */
  height: 100%; /* Full height of the viewport */
  overflow: hidden; /* Prevents scrollbars if the SVG is larger than the viewport */
}


.countries > path {
  opacity: 0.8;
  stroke: white;
  stroke-width: 0.3;
}

.countries > path:hover {
  opacity: 1;
  stroke: lightgreen;
  stroke-width: 1;
  z-index: 1;
}


svg {
  width: 100%; /* Full width of the body */
  height: 100%; /* Full height of the body */
  background-color: white;
  cursor: move;
  display: block; /* Removes extra space below the SVG */
}

.tooltip {
  position: absolute;
  background: darkgreen;
  border-radius: 5px;
  color: white;
  opacity: 0; /* initially hidden */
  padding: 0.5rem;
  pointer-events: none;
}

.control-panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px; /* Adjust width as needed */
  background-color: white;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  overflow-y: auto; /* Allows scrolling if the content is too long */
}


.control-panel select {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 15px;
  font-size: 18px;
    font-family: 'Roboto mono';
  border: 2px solid #3172F6;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  color: #333333;
  cursor: pointer;
}

.control-panel select:hover,
.control-panel select:focus {
  border-color: #3172F6;
  outline: none;
}


.dropdown {
  position: relative;
}

.dropdown-select {
  margin-top: 30px; /* Add margin to the top of the dropdown selector */
  padding: 12px 15px;
  background-color: white;
  border: none;
  cursor: pointer;
  user-select: none;
  font-size: 20px;
  font-family: 'Roboto Mono';
}



.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: none;
  border-top: none;
  display: none;
      font-family: 'Roboto mono';
}

.dropdown-option {
  padding: 10px 15px;
  cursor: pointer;
    font-size: 18px;
}

.dropdown-option:hover {
  background-color: #f0f0f0;
}

.arrow {
  font-size: 14px; /* Adjust this value as needed to make the arrow smaller */
  margin-left: 5px; /* Space between text and arrow */
  /* Additional styling as needed */
}
