  #map {
      height: 100%;
      width: 100%;
    }
    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
  }
  
  #sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100vh;
    padding: 1rem;
    background: #f7f7f7;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  }
  
  #overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    padding: 1rem;
    box-sizing: border-box;
  }
  
  .overlay-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  
  .d-none {
    display: none !important;
  }

  .word-break-header span {
    display: block;
    line-height: 1.2;
  }
  
  input.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  }
  
  #suggestions {
    position: absolute;
    z-index: 1000;
    width: 100%;
  }
  