/* Opt-in congregation typeahead dropdown */
.ltc-stream-search-wrap {
  position: relative;
}

.ltc-stream-search-results {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 1050;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  text-align: left;
}

.ltc-stream-search-results.is-open {
  display: block;
}

.ltc-stream-search-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ltc-stream-search-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid #f1f3f5;
}

.ltc-stream-search-item.is-active {
  background: #f0f4f8;
}

.ltc-stream-search-item:last-child {
  border-bottom: none;
}

.ltc-stream-search-meta {
  flex: 1 1 12rem;
  min-width: 0;
}

.ltc-stream-search-name {
  font-weight: 600;
  color: #1a202c;
  word-break: break-word;
}

.ltc-stream-search-location {
  font-size: 0.85rem;
  color: #6c757d;
}

.ltc-stream-search-hint {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4a5568;
}

.ltc-stream-search-hint--request_access {
  color: #b45309;
}

.ltc-stream-search-hint--login {
  color: #1d4ed8;
}

.ltc-stream-search-hint--unavailable {
  color: #b91c1c;
}

.ltc-stream-search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.ltc-stream-search-empty {
  padding: 0.75rem;
  font-size: 0.9rem;
  color: #6c757d;
}

#searchDivMobile .ltc-stream-search-results {
  position: static;
  margin-top: 0.5rem;
  max-height: 240px;
}
