body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    .navbar {
      display: flex;
      
      overflow-x: auto;
      padding: 0;
      
    }

    .navbar a {
      padding: 14px 20px;
      background-color: #879267;
      display: block;
      color: white;
      text-decoration: none;
      transition: all 0.4s ease-in-out;;
      white-space: nowrap;
    }

    .navbar a:hover {
      background-color: #636a4d;
    }







.popup {
  display: none;
  flex-direction: row;
  align-items: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75vw;
  height: 75vh;
  background-color: rgba(255, 191, 96, 0.914);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  z-index: 1000;
  padding: 20px;
  border-radius: 8px;
}

.popup-overlay {
  display: none;
  flex-direction: row;
  align-items: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(82, 55, 55, 0.5);
  z-index: 999;
}

.popup-left {
  width: 50%;
  padding: 3%;
  box-sizing: border-box;
  overflow: auto;
}

.Title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}

.subtitle {
  font-size: 18px;
  color: #000000;
  margin-top: 12px;
  margin-bottom: 10px;
  text-decoration: underline;
}

.popup-right {
  position: relative;
  float:right;
  width: 40vw;
  height: 75vh;
  right: 20px;
  background-color: #4d3911;
}

.Chatbox{
  width: 100%;
  height: 60vh;
  position: relative;
  top: 20px;
  float:right;
  background-color: #ede2c0;
}

.text {
  margin: 0;
  position: relative;
  padding: 5%;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.music{
  display:inline-block;
  width: 100%;
  height: 12vh;
  position: relative;
}



.popup-image {
  width: 100%;
  height: auto;
  position: relative;

}

.MainParagraph {
  overflow-y: auto;
  font-size: 12px;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 0px;
}



.popup-input{
  position: absolute;
  bottom: 7vh;
  
  float:right;
  width: 100%;
  height: 7vh;
  font-size: 16px;
  box-sizing: border-box;
}


.sendPrompt {
  position: absolute;
  bottom: 10px;
  right: 30px;
  float:right;
  height: 4vh;

  font-size: 16px;
  box-sizing: border-box;
}

.show {
  display: flex;
}

.svgDIV {
  display: flex;
  justify-content: center; 
  align-items: center;
  height: 90vh;
}

.svg {
  width: 100vw;
  height: 90vh;


}
.country {

  stroke: #333;
  stroke-width: 0.5;
  cursor: pointer;
  transition: fill 0.3s;
}
.country:hover {
  color: red;
}

g:hover .tooltiptext {
  visibility: visible;
}

.tooltiptext {
  visibility: hidden;
  width: 130px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}

#a1{
  background-color: #bb8ecf;
}

#a2{
  background-color: #6f84c9;
}

#a3{
  background-color: rgb(79, 186, 134);
}



