.global-search {
  position: relative;
}

.global-search-results {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 8px);
  inset-inline: 0;
  max-height: min(520px, 70vh);
  overflow-y: auto;
  border: 1px solid #252d48;
  border-radius: 10px;
  background: rgba(9, 14, 27, 0.98);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  text-align: left;
}

.global-search-results[hidden] {
  display: none;
}

.global-search-group {
  padding: 8px;
}

.global-search-group + .global-search-group {
  border-top: 1px solid #252d48;
}

.global-search-group h3 {
  margin: 4px 8px 6px;
  color: #717b96;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 11px;
  border-radius: 8px;
  color: #f7f5ff;
  font-size: 13px;
}

.global-search-result:hover,
.global-search-result:focus {
  background: #11182b;
  outline: none;
}

.global-search-result small {
  color: #922cff;
  font-size: 10px;
  white-space: nowrap;
}

.global-search-state {
  padding: 18px;
  color: #aeb4c8;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 800px) {
  .hub-topbar .global-search {
    display: block;
    order: 3;
    width: 100%;
    max-width: none;
    margin: 8px 0 0;
  }

  .hub-topbar {
    height: auto;
    flex-wrap: wrap;
  }

  .topbar {
    display: flex;
  }
}

@media (max-width: 600px) {
  .global-search-results {
    position: fixed;
    top: 122px;
    right: 12px;
    left: 12px;
    max-height: calc(100vh - 142px);
  }

  .global-search-result {
    min-height: 48px;
    padding: 12px;
  }
}
