.honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }
	.search-box {
	  background: linear-gradient(135deg, #feda71 0%, #febb4a 100%);
	  padding: 20px;
	  border-radius: 12px 12px 0 0;
	  margin: 0 auto;
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	  text-align: center;
	}

	.search-title {
	  margin: 0 0 10px;
	  font-size: 24px;
	  font-weight: bold;
	  color: #000;
	  text-shadow: 0 1px 0 #fedd9b;
	}

	.search-form {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 10px;
	  justify-content: center;
	}

	.search-form .form-control {
	  min-width: 200px;
	  flex: 1;
	}

	.search-form .btn-search {
	  white-space: nowrap;
	  padding: 0.5rem 1rem;
	}
	.search-content {
		background: white;
		border-bottom: 5px solid #feda71;
		color: black;
	}
	.no-radius-top {
		border-radius: 0px 0px 10px 10px;
	}
	.search-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4) !important;
}

.result-item {
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.result-item:hover {
    border-left-color: #007bff;
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

.btn-warning:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,193,7,0.4);
}
.listing-priority {
	background-color: antiquewhite;
}
.listing-priority:hover {
	background-color: aliceblue;
}
