/* Base Map Container Styling */
.pland-map-container {
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Prompt', sans-serif;
  }
  #view-map-container, #gis-map-container {
    font-family: 'Prompt', sans-serif;
    z-index: 2;
    font-size: 0.9rem;
  }
  /* Custom Popup Styling */
  .gis-popup {
    padding: 5px;
  }
  
  .gis-popup h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
  }
  
  .gis-popup-table {
    width: 100%;
    margin-bottom: 10px;
    font-size: 13px;
  }
  
  .gis-popup-table th {
    text-align: left;
    padding: 3px;
    vertical-align: top;
    font-weight: bold;
    color: #555;
    width: 40%;
  }
  
  .gis-popup-table td {
    padding: 3px;
    vertical-align: top;
  }
  
  .gis-popup-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  .gis-popup-btn {
    margin: 0 2px;
  }
  
  /* Custom Controls Styling */
  .custom-control-project-filter {
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    min-width: 200px;
  }
  
  .custom-control-project-filter select,
  .custom-control-project-filter button {
    margin-top: 5px;
    width: 100%;
  }
  
  /* Loading Indicator */
  .map-export-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-size: 18px;
  }
  
  /* Legend Styling */
  .map-legend {
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  
  .legend-color {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border: 1px solid #000;
  }
  
  .legend-label {
    font-size: 12px;
  }

