@media (min-width: 767px) {
  .metaInfo {
    top: 0;
    /*padding: 6px 8px;*/
  }
}

.info {
  padding: 6px 8px;
  margin-left: 8px; /* Add padding on the left side */
  font: 14px/16px Arial, Helvetica, sans-serif;
  background: #FAF0DC;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-height: 100%;
}


/*.info h4 {*/
/*  flex-basis: 100%;*/
/*  text-align: center;*/
/*  margin-bottom: 1em;*/
/*}*/

.info h4 {
  margin: 0 0 5px;
  font: 18px/20px Arial, Helvetica, sans-serif;
  color: #000;
}

.info h5 {
  margin: 0.5em 0;
  font: 16px/18px Arial, Helvetica, sans-serif;
  color: #000;
  font-weight: bold;
}

.info h6 {
  margin: 0.25em 0;
  font: 14px/16px Arial, Helvetica, sans-serif;
  color: #000;
  font-weight: bold;
}
.info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.info-section {
  flex: 1;
}

@media (min-width: 767px) {
  .info-content {
    flex-direction: column;
  }

  .info h5, .info h6 {
    font-size: 14px;
  }

  .info p {
    font-size: 12px;
  }
}

.buy-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: #ff6864;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.buy-button:hover {
  background-color:#0C423E;
}

.meta-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

table {
  width: 70%;
}

/*.buy-button {*/
/*  padding: 10px 20px;*/
/*  font-size: 18px;*/
/*  font-weight: bold;*/
/*  color: white;*/
/*  background-color: #0077ff;*/
/*  border-radius: 5px;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*  height: 100%;*/
/*}*/

.poiTr {
  bottom: 30px; /* Adjust this value to position the button above the attribution banner */
  padding: 6px 8px;
  background: #FAF0DC;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font: 14px/16px Arial, Helvetica, sans-serif;
}

.metaInfo {
  display: none;
  bottom: 30px; /* Adjust this value to position the button above the attribution banner */
  padding: 6px 8px;
  background: #FAF0DC;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  font: 14px/16px Arial, Helvetica, sans-serif;
}

.metaInfo h4 {
  margin: 0 0 5px;
  font: 18px/20px Arial, Helvetica, sans-serif;
  color: #000;
}

.poiTr h4 {
  margin: 0 0 5px;
  font: 18px/20px Arial, Helvetica, sans-serif;
  color: #000;
}

.info table {
  flex: 1;
}

.info .score {
  text-align: center;
  font-size: 4em;
  font-weight: bold;
  color: #FFA500;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.info .score-description {
  text-align: center;
  font-size: 1em;
  margin-bottom: 0.5em;
  order: 0;
}

.info .score-description span {
  margin-top: 0.5em;
  font-size: 0.7em;
}

.info .score-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8); /* Add an opaque background */
  border: 1px solid #ccc; /* Add a border */
  border-radius: 8px; /* Add rounded corners */
  padding: 8px; /* Add padding */
}

.info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.info-left-column {
  flex: 1;
}

.info-right-column {
  flex: 1;
}

/* Responsive CSS for mobile devices */
@media (max-width: 767px) {
  .info {
    flex-direction: row;
  }

  .info table {
    flex: none;
    flex-basis: 50%;
  }

  .info b, .info p, .info ol {
    line-height: 1.5;
  }
  .info-content {
    margin-top: -0.8em;
    flex-direction: row;
  }

  .info-left-column {
    flex-basis: 65%;
    font-size: 0.8em;
  }

  .info-right-column {
    flex-basis: 30%;
  }

  .info .score-container {
    flex-basis: 30%;
  }
}

/* Responsive CSS for desktop devices */
@media (min-width: 767px) {
  .info {
    flex-direction: column;
  }


  .info-content {
    flex-direction: column;
  }

  .info-left-column {
    flex-basis: 100%;
  }

  .info-right-column {
    flex-basis: 100%;
  }

  .info table {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
  }

  .info table tr {
    flex-basis: 50%;
  }
  .info .score-description {
    order: 0; /* Reset the order for the desktop devices */
  }
}


.metaInfoVisible {
  display: block;
}

/* Add this media query to show the meta info box and hide the button on desktop devices */
@media (min-width: 767px) {
  .metaInfo {
    display: block; /* Make the meta info box always visible on desktop */
  }

  .metaInfoButton {
    display: none; /* Hide the button on desktop */
  }
}

.metaInfoButton {
  position: absolute;
  z-index: 1000;
  left: 0;
  bottom: 30px; /* Adjust this value to position the button above the attribution banner */
  padding: 6px 8px;
  background: #ff6864;
  color: white;
  border-radius: 5px;
  font: 14px/16px Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.metaInfoButton:hover {
  background: #0C423E;
}

@media (min-width: 768px) {
  .metaInfoButton {
    top: 50%;
    bottom: auto; /* Reset the bottom property for desktop devices */
  }
}

.pioTrButton {
  position: absolute;
  z-index: 1000;
  right: 0;
  bottom: 30px; /* Adjust this value to position the button above the attribution banner */
  padding: 6px 8px;
  background: #ff6864;
  color: white;
  border-radius: 5px;
  font: 14px/16px Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.pioTrButton:hover {
  background: #0C423E;
}


.click-on-region-message {
  padding: 6px 8px;
  font: 16px/18px Arial, Helvetica, sans-serif;
  text-align: center;
  background: #FAF0DC;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  position: absolute;
  top: 10px; /* Adjust this value to position the message vertically */
  left: 50%; /* Center the message horizontally */
  transform: translateX(-90vw); /* Offset the message's own width */
  width: 80vw;
  z-index: 1000;
}

@media (min-width: 768px) {
  .click-on-region-message {
    font: 18px/20px Arial, Helvetica, sans-serif;
    transform: translateX(-65vw); /* Offset the message's own width */
    width: 30vw;
  }
}

.hidden {
  display: none;
}

.home-work-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #584ac5;
  border-radius: 50%;
  width: 40px; /* Increase the width */
  height: 40px; /* Increase the height */
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.4);
}

.home-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0C423E;
  border-radius: 50%;
  width: 40px; /* Increase the width */
  height: 40px; /* Increase the height */
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.4);
}

.poi-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6864;
  border-radius: 50%;
  width: 40px; /* Increase the width */
  height: 40px; /* Increase the height */
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.4);
}

.cnt-marker-red {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5722;
  border-radius: 50%;
  width: 40px; /* Increase the width */
  height: 40px; /* Increase the height */
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.4);
}

.cnt-marker-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFC107;
  border-radius: 50%;
  width: 40px; /* Increase the width */
  height: 40px; /* Increase the height */
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.4);
}

.cnt-marker-green {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4CAF50;
  border-radius: 50%;
  width: 40px; /* Increase the width */
  height: 40px; /* Increase the height */
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.4);
}

.marker-label {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: white;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.marker-label-large {
  font-size: 24px;
}

.mono {
  font-family: monospace;
}

.info table {
  border-collapse: collapse;
  font: 14px/16px Arial, Helvetica, sans-serif;
}

.info td {
  padding: 4px;
  vertical-align: top;
}

.info td:nth-child(2) {
  font-weight: bold;
}


.info2 {
    padding: 10px 1px;
}



html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Add this line */
}

#mainContainer {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

::-webkit-scrollbar {
    display: none;
}

#mapDiv {
    flex: 1;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 0;
}
