.poiNameLabel {
  font-size: 30px;
  font-weight: bolder;
  margin-bottom: 10px;
  color: white;
  text-align: center;
}

.dialog p {
  color: white;
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.dialog span {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  color: white;
  font-size: 16px;
}

.dialog-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Add a gap between the buttons */
  margin-top: 20px;
  width: 100%; /* Ensure the buttons take up the full width */
}

.dialog-buttons button {
  background-color: black;
  font-size: 20px;
  height: 40px;
  color: white;
  border: 1px solid white;
  padding: 8px 16px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 20px;
  margin-top: 20px;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9);
  display: flex; /* Enables flex layout for icon and text */
  align-items: center; /* Vertically centers items */
  justify-content: center; /* Horizontally centers items */
  gap: 10px; /* Space between icon and text */
}

.dialog-buttons button i {
  font-size: 24px; /* Icon size */
}

.navigate-button {
  background-color: darkblue;
  height: 40px;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 20px;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
}

.navigate-button:hover {
  background-color: #00005c;
}

.poi-title a {
  font-size: 20px;
  margin-bottom: 20px;
  text-decoration: none;
  font-weight: lighter;
  font-family: 'PT Serif', serif;
  /* Adjust to your preferred size */
  color: lime;
  /* Adjust to your preferred color */
}

/* Optional: Button Hover Effects */
.dialog-buttons button:hover {
  background-color: #333;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .dialog p {
    padding: 20px;
  }

  .poiNameLabel {
    font-size: 24px;
  }

  .dialog-buttons button {
    font-size: 18px;
    height: 45px;
  }

  .dialog-buttons button i {
    font-size: 20px;
  }
}
