/* Search container */
.search-box {
  position: relative;
  max-width: 420px;
  margin: 10px auto;
  z-index: 10;
}

.search-box input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 30px;
  border: none;
  outline: none;
  font-size: 16px;
  background: #1e293b;
  color: #fff;
}

.search-box input:focus {
  box-shadow: 0 0 12px rgba(56,189,248,.6);
}

/* Results dropdown */
.results {
  list-style: none;
  margin-top: 8px;
  padding: 0;
  background: #020617;
  border-radius: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.results.show {
  max-height: 260px;
}

.results li a {
  display: block;
  padding: 12px 18px;
  color: #e5e7eb;
  text-decoration: none;
}

.results li a:hover {
  background: #1e293b;
}

/* Mobile */
@media (max-width: 768px) {
  .search-box {
    max-width: 260px;
    /* padding: 10px 10px; */
    margin-left: 20px;
  }
}
