/* MapLibre Popup Close Button Styling */
.maplibregl-popup-close-button {
  width: 32px;
  height: 32px;
  padding: 4px;
  top: 8px;
  right: 8px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: absolute !important;
}

.maplibregl-popup-close-button:hover {
  background-color: rgba(255, 255, 255, 1);
}
