    body {
      font-family: Arial, sans-serif;
      background: #f4fbfe;
      margin: 0;
      padding: 40px;
      color: #1f3440;
    }

    .tool {
      max-width: 850px;
      margin: auto;
      background: white;
      border-radius: 18px;
      padding: 30px;
      box-shadow: 0 12px 30px rgba(17,107,138,0.12);
    }

    h1 {
      color: #116b8a;
    }

    .search {
      display: flex;
      gap: 10px;
      margin: 25px 0;
    }

    input {
      flex: 1;
      padding: 14px;
      font-size: 16px;
      border: 1px solid #cfe3ec;
      border-radius: 10px;
    }

    button {
      background: #116b8a;
      color: white;
      border: none;
      padding: 14px 20px;
      border-radius: 10px;
      font-weight: bold;
      cursor: pointer;
    }

    .result {
      margin-top: 25px;
      padding: 22px;
      background: #f7fcff;
      border: 1px solid #d7eaf2;
      border-radius: 14px;
      display: none;
    }

    .score {
      font-size: 46px;
      font-weight: 800;
      color: #116b8a;
    }

    .badge {
      display: inline-block;
      margin: 8px 0 20px;
      background: #e4f5fa;
      color: #116b8a;
      padding: 7px 12px;
      border-radius: 999px;
      font-weight: bold;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 15px;
    }

    .card {
      background: white;
      border: 1px solid #d7eaf2;
      border-radius: 12px;
      padding: 16px;
    }

    .card h3 {
      color: #116b8a;
      margin-top: 0;
    }
.search-wrapper{
  position:relative;
  flex:1;
}

.search input {
  width: 100%;
  box-sizing: border-box;
}

.autocomplete-box{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:white;
  border:1px solid #d9e7ef;
  border-top:none;
  border-radius:0 0 12px 12px;
  overflow:hidden;
  z-index:999;
}

.autocomplete-item{
  padding:14px 18px;
  cursor:pointer;
  border-bottom:1px solid #eef4f7;
}

.autocomplete-item:hover{
  background:#f3f9fc;
}

#map{
  height:500px;
  margin-top:30px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #d7eaf2;
}

.filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:25px;
  margin-bottom:20px;
}

.filters button{
  border:none;
  background:#15739b;
  color:white;
  padding:10px 16px;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
}

.filters button:hover{
  background:#0f5d7c;
}
