/* resources/css/map.css */
.leaflet-container {
  height: 600px;
  width: 100%;
}

.context-menu {
  position: absolute;
  z-index: 1000;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 5px;
  display: none;
}

.context-menu .context-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 5px;
  border-bottom: 1px solid #ddd;
}

.context-menu .context-menu-title {
  font-weight: bold;
}

.context-menu .context-menu-item {
  padding: 5px 10px;
  cursor: pointer;
  background-color: #f8f9fa;
  border-radius: 5px;
  margin-top: 3px;
}

.context-menu .context-menu-item:hover {
  background-color: #dedede;
}

.close-context-menu {
  cursor: pointer;
  font-size: 16px;
}
