.select_item {
    display: flex;
    flex-direction: column;
}

.select_box {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.select_label {
    font-size: 14px;
    margin-bottom: 4px;
    color: #555;
}

.search_result {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.property-card {
    display: flex;
    gap: 16px;
    padding: 12px;
    border: 1px solid #ddd;
    background: #fff;
    align-items: center; 
}

.property-card img {
    width: 240px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
}

.property-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slider {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
}

#sliderImg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid #aaa;
    background: white;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

.property-detail {
    padding-left: 20px;
    border-left: 1px solid #ddd;
}
