.property-filter-container-08bd6464 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    background: #fff;
}

.property-filter-container-08bd6464 .filter-group {
    flex: 1;
    min-width: 200px;
}

.property-filter-container-08bd6464 select {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #000;
    background: transparent;
    font-size: 14px;
    font-weight: bold;
    color: #c9937a;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom dropdown arrow */
.property-filter-container-08bd6464 .filter-group {
    position: relative;
}
.property-filter-container-08bd6464 .filter-group::after {
    content: "▼";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    pointer-events: none;
    color: #1a365d;
}

.property-filter-container-08bd6464 select:focus {
    border-bottom-color: #c9937a;
}