/* Reset some basic default styles */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
input,select{
  margin-bottom: 10px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* General Property Listings Styling */
.property-listings-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;

}
.filter-form{
    margin-top:15px;
     gap: 20px;
}

.property-item {
  display: flex;

  color: black;
  flex-direction: column;

  gap: 20px;
  background-color: white;
  box-shadow: 1px 2px 6px black;
  padding: 10px;
  border-radius: 5px;
}

.property-item img {
  width: 250px;
  border-radius: 5px !important;
  height: 250px;
}

.property-details {
  flex: 1;
}

.property-details h3 {
  margin: 0 0 5px;
  font-size: 25px;
  text-align: left;
  color: black;
  text-transform: capitalize;
}

.property-details p {
  margin: 0;
  font-size: 15px;
  color: black;
  width: 100%;
  font-weight: 500;
}
.property-details p strong {
  font-weight: 500;
}
.view-btn {
  color: #0073aa;
  font-weight: bold;
  transition: color 0.2s ease;
  text-align: right;
}
.filters{
  padding: 10px;
}
.view-btn:hover {
  color: #005177;
}
.Filterbox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
}
.button1 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.Filterbox .select {
  width: 24%;
  
}
button {
  margin-top: 10px;
  color: white;
}
.property-item a {
  text-decoration: none !important;
}
.property-details a {
}
.space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 100%;
}

/* Target devices with a maximum width of 768px (commonly mobile and small tablets) */
@media (max-width: 768px) {
  .property-item img {

    border-radius: 5px !important;
    height: 30vw !important;
  }
  .property-details h3 {

    font-size: 15px;

  }
  
  .property-details p {
    margin: 0;
    font-size: 10px;
    color: black;
    width: 100%;
    font-weight: 500;
    
  }
  .property-listings-container{
    margin: 0;
    padding:0 ;
    flex-direction:row;
  }
  .property-item {
    width: 40vw;
    margin: 0;
    gap: 3px;
   
  }
  .container {
    margin: 0;
    padding:0 ;
    flex-direction:column;
  }
  /* Add more styles as needed for mobile adjustments */
}
.category-container{
display: flex; align-items: center; justify-content: flex-start; overflow: scroll; flex-direction: row; padding: 20px;
}
.bgimage{
  min-width: 200px; height: 250px; filter: blur(0.5px); border-radius: 5px; box-shadow: 2px 2px 5px black;
}
.category-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction:row;

}
.pp{
  background-color: rgb(115, 115, 134);
  color: white;
  padding: 15px;
  margin: 15px;

  width: inline;
  text-decoration: none !important;

  position: absolute !important;
  top: 5px;
  left: 0px;
  z-index: 2;
  background-image: linear-gradient(to right, rgb(40, 127, 240) , rgba(120, 187, 231, 0.404));
  width: 90%;
}
.pp:hover{
  color: white;
  scale: 1.1;

}
.categorylink{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 20px;
}
.categorylink img{
  height: 250px !important;
  margin-left: 20px;

  filter: blur(0.5px);
  border-radius: 5px !important;
  box-shadow: 2px 2px 5px black !important;
}
.center{
  text-align: center;
  padding: 20px;
  background-color: #1b61ac;
  color: white !important;
 border-radius: 5px ;
 width: 100%;
 margin-bottom: 10px;
}