/* General body reset for your search area */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f6fa;
  color: #333;
}

/* Search input styling */
#zyne-search-input {
  width: 100%;
  max-width: 500px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  outline: none;
  display: block;
  margin: 20px auto;
}

#zyne-search-input:focus {
  border-color: #4a90e2;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Suggestions container */
#zyne-suggestions {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 5px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  z-index: 999;
  position: relative;
}

/* Individual suggestion item */
.zyne-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #f0f0f0;
}

.zyne-item:last-child {
  border-bottom: none;
}

/* Hover effect for suggestions */
.zyne-item:hover {
  background-color: #f0f8ff;
  transform: translateX(2px);
}

/* Address styling */
.zyne-item-address {
  font-weight: 600;
  color: #2c3e50;
}

/* County and value styling */
.zyne-item-county {
  font-size: 14px;
  color: #7f8c8d;
  margin-top: 4px;
}

/* No results and error messages */
.zyne-nores,
.zyne-error {
  padding: 12px 16px;
  text-align: center;
  color: #999;
  font-style: italic;
}

/* Smooth animation when suggestions appear */
#zyne-suggestions {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  0% {opacity: 0; transform: translateY(-5px);}
  100% {opacity: 1; transform: translateY(0);}
}
