
/* Budget Dropdown Styles */
.search__budget__wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.search__budget__fld-min-max {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.budget-menu {
    display: flex;
    flex-direction: column;
}

.budget-options {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.budget-column {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.budget-column label {
    font-weight: bold;
    margin-bottom: 5px;
}

.budget-column select {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    width: 100%;
    cursor: pointer;
}

/* Dropdown Show */
.show {
    display: block !important;
}




/* Container styling */
.search_property__item__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
   /* padding: 10px 16px;*/
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 50px; /* Circular shape */
    cursor: pointer;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease-in-out;
}

/* Hide default checkbox */
.search_property__item__label input {
    display: none;
}

/* Hover effect */
.search_property__item__label:hover {
    background: #f5f5f5;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .search_property__item__label {
      
        font-size: 12px;
    }
}

.property-group,
label {
  /* float: left;*/
    margin-right: 8px;
    margin-bottom: 8px;
  
    position: relative;
}

.search-container {
    /*width: 90%;
    max-width: 900px;*/
    position: relative; /* Ensures dropdowns position correctly */
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
  border: solid 1px #909090;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 10px;
    position: relative; /* Required for dropdown absolute positioning */
}

/* Search Items */
.search-item {
    display: flex;
    align-items: center;
    gap: 5px;
 
    position: relative;
    border-right: 1px solid #ddd;
    flex: 1;
    min-width: 120px;
}

.city input {
    border: none;
    outline: none;
    font-size: 16px;
  
}

/* Dropdown */
.dropdown-toggle {
    cursor: pointer;
    font-size: 16px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 250px;
    left: 0;
    top: 100%; /* Positions below the button */
}

/* Ensuring dropdowns align properly */
.dropdown .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
}

/* Dropdown Groups */
.property-group {
    margin-bottom: 10px;
}

.property-title {
    font-weight: bold;
    cursor: pointer;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.property-items {
    display: none;
    padding: 5px 0;
}

.property-items label {
    display: block;
  /*  padding: 5px;*/
    cursor: pointer;
}

.property-items label:hover {
    background: #f1f1f1;
}

/* Search Button */
.search-btn {
    background: red;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

/* Show Dropdown */
.show {
    display: block !important;
}

/* Responsive */
@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
        border-radius: 10px;
        padding: 15px;
        gap: 15px;
    }

    .search-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .dropdown-menu {
        width: 100%;
        left: 0;
        transform: none;
    }
}



