#giftgenie {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 20px auto;
  font-family: 'Segoe UI', sans-serif;
}
#giftgenie textarea, select {
  width: 100%;
  margin: 6px 0 12px 0;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
#giftgenie-category {
  margin-bottom: 16px;  /* increase this value if you want more gap */
}
#giftgenie .slider-box {
  background: #f8f8f8;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 14px;
}
#giftgenie input[type=range] {
  width: 100%;
  appearance: none;
  height: 6px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
  margin-top: 8px;
}
#giftgenie input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0073aa;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
#giftgenie input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0073aa;
  cursor: pointer;
  border: 2px solid white;
}
#giftgenie button {
  background: #0073aa;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}
#giftgenie button:hover {
  background: #005f8c;
}
#giftgenie-results ul {
  list-style: none;
  padding: 0;
}
#giftgenie-results p {
  margin-bottom: 2px;   /* reduce from default ~16px */
  margin-top: 3px;      /* optional, keep it visually balanced */
  line-height: 1;
}
#giftgenie-results li {
  margin: 4px 0;
}
#giftgenie-results a {
  text-decoration: none;
  color: #0073aa;
}
#giftgenie-results a:hover {
  text-decoration: underline;
}
#giftgenie-results::before {
  content: "";
  display: block;
  height: 1px;
  background: #e0e0e0;
  margin: 20px 0;
}


