.search-popup-container {
  position: relative;
  display: inline-block;
}

.search-toggle {
  font-size: 1.4rem;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.search-toggle:hover {
  color: #009688; /* Seafoam accent color */
}

.search-popup-box {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.search-popup-box form {
  display: flex;
  align-items: center;
}

.search-popup-box input {
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 5px 10px;
  outline: none;
  width: 180px;
  transition: width 0.3s ease;
}

.search-popup-box input:focus {
  width: 220px;
  border-color: #009688;
}

.search-popup-box button {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 5px;
  color: #009688;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-5px);}
  to {opacity: 1; transform: translateY(0);}
}
