
   .ad-filter hr { margin-bottom: 0.5em; margin-top: 0.5em; }
    .ad-filter {
    position: relative;
    display: none;
    /position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    /max-height: 70%;
    height: 100%;
    width: 55em; max-width: 66vw;
    overflow-y: auto;
    padding: 1.5em;
    }

    .ad-filter input[type="text"] {
    padding: 0.35em;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    }
    .ad-filter input[type="number"] {
    padding: 0.35em;
    width: 50%;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    }

    .filter-title-container {
    display: flex; /* Use flexbox to arrange items */
    justify-content: space-between; /* Distribute space between elements */
    align-items: center; /* Vertically center align elements */
    width: 100%; /* Make the container take the full width */
    }
    .filter-title-container p {
    margin-left: auto;
    font-size: 1em;
    font-weight: bold;
    }
    .close-sign {
    /position: absolute; /* Position the span relative to the div */
    /top: 5px;
    /right: 1em;
    font-size: 2em;
    cursor: pointer;
    margin-right: 0.33em;
    }
    .reset-button {
    margin-right: 2em; /* Space between the button and the span *
    /position: absolute; /* Position the span relative to the div */
    /top: 5px;
    /right: 5em;
    font-size: 1em;
    font-weight: bold;
    color: #0077b3;
    background-color: none;
    cursor: pointer;
    border: none;
    background: none;
    }

    .filter-search-button {
    display: block;
    background-color: #739900;
    width: 80%;
    text-align: center;
    border-radius: 40px;
    border: none;
    font-size: 1.25em;
    color: white;
    padding: 0.5em;
    margin-bottom: 1em; margin-top: 1em;
    margin-left: auto; margin-right: auto;
    cursor: pointer;
    }
    .filter-search-button:hover { filter: brightness(1.33); }

   @media screen and (max-width: 600px) {
    .ad-filter {
    z-index: 5;
    width: 100%;
    max-width: 100%;
    }
    .filter-search-button {
    position: fixed;
    bottom: 0.5em;
    /border: solid 0.525em #e6ff99;
    }
   }

    /* --------------------------------------- */
    /* Bedroom Circle Styling */
    .circle-choice-label {
        display: inline-block;
        margin: 0.33em;
        cursor: pointer;
    }

    .circle-choice-circle {
        display: inline-block;
        width: auto;
        min-width: 2em;
        height: auto;
        border: solid 1px;
        border-color: lightgrey;
        padding: 0.6em;
        border-radius: 40px;
        /background-color: #ddd; /* default gray color */
        text-align: center;
        /line-height: 2em;
        font-size: 1.15em;
        color: #404040;
        transition: background-color 0.3s ease;
    }

    /* Highlight the selected bedroom option */
    .circle-choice-label.highlight .circle-choice-circle {
        background-color: green; /* Turn the circle green when selected */
        color: white;  /* Text color changes to white */
    }

    .circle-choice-label input:checked + .circle-choice-circle {
        background-color: #4dbd31; /* Turn the circle green when selected */
        color: white;
    }

    .circle-choice-circle:hover {
        background-color: #d9ffb3; /* Hover effect */
    }

    /* location div */
    .close-location {
    /font-size: 1em;
    border-radius: 50%;
    color: black;
    margin-left: 0.25em;
    /background-color: #d5f0c7;
    padding-left: 0.2em; padding-right: 0.2em;
    }