/* AZSP Stops List Addon — clean dropdown UI (v1.2.5.4.1) */

.azspfa-suggest{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  box-shadow: 0 22px 56px rgba(0,0,0,.14);
  z-index: 999999;
  display: none;
  overflow: hidden;
}

.azspfa-suggest ul{
  list-style: none;
  margin: 0;
  padding: 10px 0;
  max-height: 420px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.azspfa-suggest li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.azspfa-suggest li:last-child{
  border-bottom: none;
}

.azspfa-suggest li:hover{
  background: rgba(0,0,0,.04);
}

.azspfa-ic{
  flex: 0 0 auto;
  opacity: .85;
  margin-top: 2px;
  color: #4b5563;
}

.azspfa-txt{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.azspfa-title{
  font-weight: 650;
  font-size: 16px;
  color: #0a0a0a;
}

.azspfa-sub{
  margin-top: 3px;
  font-size: 13px;
  color: #4b5563;
  opacity: .9;
}

.azspfa-msg{
  cursor: default !important;
  color: #6b7280;
}

.azspfa-msg:hover{
  background: transparent !important;
}

@media (max-width: 768px){
  .azspfa-suggest ul{ max-height: 60vh; }
}
