.filter-box {
    cursor: pointer;
    width: max-content;
    background-color: #2F74B9 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .15s;
}

.filter-box p {
    color: white;
    font-size: 20px;
}

.filter-box:hover {
    transform: scale(1.1);
}

.advertisement-card {
    border: 1px solid gray;
    border-radius: 10px;
    /* padding: 0px 20px; */
}

.submit-time {
    background-color: lightgrey;
    width: max-content;
    border-top-right-radius: 10px;
    padding: 3px 15px;
}

.submit-time p {
    color: white;
    font-size: 18px;
}

.img-section {
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.house-img {
    width: 100%;
    height: 100%;
}

.bottomBar-items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer {
    /* height: 70px; */
    padding: 10px 0;
    background-color: white !important;
    text-align: center;
}

.bottom-links {
    cursor: pointer;
    transition: all .15s;
}

.bottom-links:hover {
    color: brown;
}

.bottom-links a {
    color: black;
    text-decoration: none;
    font-size: 15px;
}

.search-input {
    color: blue;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding-right: 40px;
    /* فاصله متن از آیکون */
    width: max-content;
}

/* ایجاد box-shadow هنگام فوکوس */
.search-input:focus {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    /* سایه آبی */
    border-color: #80bdff;
    /* تغییر رنگ حاشیه هنگام فوکوس */
    outline: none;
    /* حذف outline پیش‌فرض */
}

/* استایل آیکون */
.bi-search {
    pointer-events: none;
    /* غیرفعال کردن کلیک روی آیکون */
}