.search-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  
  .tab-button {
    background-color: #f5f5f5;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .tab-button.active {
    background-color: #007bff;
    color: white;
  }
  
  .search-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .dropdown-container {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-button {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    z-index: 1;
  }
  
  .dropdown-content label {
    display: block;
    padding: 5px;
    cursor: pointer;
  }
  
  .dropdown-content label:hover {
    background-color: #f1f1f1;
  }
  
  .search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
  }
  
  .search-bar input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .search-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .search-button:hover {
    background-color: #0056b3;
  }
  /* Basic Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  /* Sidebar Styling */
  .sidebar {
    width: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
  }
  
  h3, h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .filters label, .bedroom-filter label, .property-type-filter label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  input[type="checkbox"] {
    margin-right: 10px;
  }
  
  /* Range Slider Styling */
  .range-slider {
    position: relative;
    width: 100%;
    height: 40px;
  }
  
  .range-slider input[type="range"] {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    margin: 0;
    padding: 0;
    background: transparent;
  }
  
  .range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff5722;
    cursor: pointer;
    -webkit-appearance: none;
    position: relative;
    z-index: 1;
  }
  
  .range-slider input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff5722;
    cursor: pointer;
    z-index: 1;
    position: relative;
  }
  
  .range-slider .slider-track {
    position: absolute;
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    z-index: 0;
  }
  
  .range-slider .slider-track::before {
    content: '';
    position: absolute;
    height: 100%;
    background: #ff5722;
    border-radius: 4px;
    z-index: 0;
  }
  
  .range-slider .slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
    margin-top: 10px;
    padding-top: 15px;
  }
  
  /* Main Content Styling */
  .content {
    flex-grow: 1;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 20px;
    color: #333;
  }
  
  .sort-button {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .property-listings {
    display: flex;
    flex-direction: column;
  }
  
  .property-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .property-card img {
    width: 200px;
    height: 150px;
    object-fit: cover;
  }
  
  .property-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .property-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .property-info p {
    font-size: 14px;
    color: #666;
  }
  
  .property-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .property-details span {
    font-size: 14px;
    color: #ff5722;
  }
  
  .additional-info {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
  }
  
  .details-button {
    padding: 10px 15px;
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
  }
  
  .range-slider .slider-track::before {
      left: var(--left, 0%);
      right: calc(100% - var(--right, 100%));
      transition: left 0.1s, right 0.1s;
  }
  