.tahe-sl-wrap{
  width:100%;
  position:relative;
  overflow:hidden;
}

.tahe-sl-map{
  width:100%;
  height:min(78vh, 720px);
  min-height:520px;
  border-radius:18px;
}

.tahe-sl-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:18px;
  z-index:500;
}

.tahe-sl-panel{
  width:min(720px, 100%);
  background:rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  box-shadow: 0 18px 55px rgba(0,0,0,.14);
  padding:18px;
  pointer-events:auto;
}

.tahe-sl-title{
  font-size:18px;
  font-weight:700;
  margin:0 0 12px 0;
  color:#0b0b0c;
}

.tahe-sl-row{
  display:flex;
  gap:10px;
  align-items:center;
}

.tahe-sl-input{
  flex:1;
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.14);
  outline:none;
  font-size:15px;
  color:#0b0b0c;
  background:#fff;
}

.tahe-sl-input:focus{
  box-shadow: 0 0 0 4px rgba(177,0,0,.12);
  border-color: rgba(177,0,0,.35);
}

.tahe-sl-btn{
  padding:14px 16px;
  border-radius:14px;
  border:1px solid #0b0b0c;
  background:#0b0b0c;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
}

.tahe-sl-btn[disabled]{
  opacity:.65;
  cursor:default;
}

.tahe-sl-msg{
  margin-top:10px;
  font-size:14px;
  color:#333;
  min-height:18px;
}

.tahe-sl-retry{
  display:none;
  pointer-events:auto;
  position:absolute;
  top:18px;
  right:18px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.92);
  cursor:pointer;
  font-weight:700;
}

.tahe-sl-wrap.tahe-sl-has-result .tahe-sl-panel{
  display:none;
}

.tahe-sl-wrap.tahe-sl-has-result .tahe-sl-retry{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

@media (max-width: 700px){
  .tahe-sl-map{
    height:78vh;
    min-height:520px;
    border-radius:14px;
  }
  .tahe-sl-row{
    flex-direction:column;
  }
  .tahe-sl-btn{
    width:100%;
  }
}
