.search-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  padding: 12px 0;
  opacity: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.85);
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.25s ease;
  transition: all 0.25s ease-in-out;
  pointer-events: auto; /* Pastikan bisa menerima hover */
}

#searchToggle i {
    font-size: 17px;
}

.search-container.active {
  display: flex;
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
  pointer-events: auto;
}

.search-container input {
  width: 60%;
  max-width: 600px;
  border-radius: 25px;
  border: none;
  outline: none;
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 15px;
  background-color: #fff;
  transition: box-shadow 0.2s ease;
}

/* Optional: efek spotlight saat aktif */
.search-container.active input {
  box-shadow: 0 0 12px rgba(255,255,255,0.2);
}