#property-search-form {
    background: linear-gradient(204deg, #0054a6, #2a1c7957);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
}

#property-search-form label {
    font-family: "Arial", Sans-serif;
    font-size:18px;
    /*font-weight: bold;*/
    display: block;
    margin-bottom: 5px;
}

#property-search-form select, #property-search-form input {
    width: 100%;
    background-color: white !important;
    font-family: "Arial", Sans-serif;
    font-size:16px;
    color: black !important;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid white;
    border-radius: 6px;
}
#property-search-form button {
    background-color: #001a57;
    color: #fff;
    font-family: "Arial", Sans-serif;
    padding: 12px;
    width: 100%;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.property-list {
    margin-top: 20px;
}

.property-list li {
    background: #f5f5f5;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}
.bb-div , .aa-div{
    display:flex;
    gap:20px;
}
.option{
    font-family: "Arial", Sans-serif;
    color:black !important;
}

/*................................*/
.property-list {
    padding: 0;
    list-style: none;
}

.property-list li {
    margin: 10px 0;
}

.property-list li a {
    color: #0e74af;
    text-decoration: none;
    font-weight: bold;
}


.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.property-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  background: #fff;
  transition: all 0.3s;
}
.property-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.property-thumb {
  position: relative;
}
.property-thumb img {
  width: 100%;
  height: 200px;
  max-height: 200px;
  object-fit: cover;
}
.photo-count {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0073aa;
  color: #fff;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 3px;
}
.property-type {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #000;
  color: #fff;
  padding: 2px 10px;
  font-size: 13px;
  border-radius: 3px;
}
.property-body {
  padding: 15px;
}
.property-body h3 {
  font-size: 18px;
  margin: 0 0 5px;
}
.property-body .date {
  color: #888;
  font-size: 12px;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}
.meta-row span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.property-tags {
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
}
.property-price {
  font-size: 20px;
  font-weight: bold;
  color: #0073aa;
}
.property-price small {
  font-size: 14px;
  font-weight: normal;
  color: #777;
}
