

.property-list-horizontal {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Kartlar arası boşluk biraz daha azaltıldı */
}

.property-item-horizontal {
    display: flex;
    background-color: #fff;
    border: 1px solid #e9e9e9; /* Sınır rengi biraz daha yumuşak */
    border-radius: 0;
    overflow: hidden;
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04); /* Gölge daha da hafifletildi veya kaldırılabilir */
}

.property-image-horizontal {
    flex: 0 0 65px; /* Resim alanı genişliği daha da azaltıldı (örn: 80px -> 65px) */
    height: 65px;  /* Resim alanı yüksekliği genişlikle aynı (kare resim alanı) */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 0;
}

.property-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.no-image-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; /* Ebeveynin (.property-image-horizontal) yüksekliğini alır */
    font-size: 24px; /* İkon boyutu daha da küçültüldü */
    color: #adb5bd;
    border-radius: 0;
}

.property-details-horizontal {
    flex-grow: 1;
    padding: 8px; /* İç boşluklar daha da azaltıldı (örn: 10px -> 8px) */
    display: flex;
    flex-direction: column;
    justify-content: center; /* İçeriği dikeyde ortalamak, eğer az içerik varsa daha toplu durur */
    overflow: hidden;
    border-radius: 0;
    min-height: 65px; /* Resim yüksekliğiyle aynı minimum yükseklik, genel kart hizalaması için */
}

.property-details-horizontal .property-title {
    font-size: 0.85rem; /* Başlık font boyutu (0.9rem idi) */
    font-weight: 600;
    margin-bottom: 3px; /* Alt boşluk (5px idi) */
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3; /* Satır yüksekliği azaltıldı */
}

.property-details-horizontal .property-info {
    display: flex;
    flex-direction: column;
    gap: 1px; /* Bilgi öğeleri arası boşluk (4px idi) */
    font-size: 0.7rem; /* Font boyutu (0.75rem idi) */
    color: #555;
    margin-bottom: 4px; /* Alt boşluk (6px idi) */
    line-height: 1.3; /* Satır yüksekliği azaltıldı */
}

.property-details-horizontal .property-info span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-details-horizontal .property-info .property-type::before,
.property-details-horizontal .property-info .property-rooms::before,
.property-details-horizontal .property-info .property-size::before {
    /* Font Awesome ikonları için stiller aynı kalabilir veya ikon boyutları metne göre ayarlanabilir */
    font-family: "Font Awesome 5 Free";
    margin-right: 3px; /* İkon sağ boşluğu (4px idi) */
    color: #007bff;
    font-size: 0.65rem; /* İkon boyutu (0.7rem idi) */
}

.property-details-horizontal .property-info .property-type::before { content: "\f015"; }
.property-details-horizontal .property-info .property-rooms::before { content: "\f236"; }
.property-details-horizontal .property-info .property-size::before { content: "\f54e"; }


.property-price-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0; /* Eğer aksiyon butonları yoksa alt boşluk sıfırlanabilir veya çok az bırakılabilir (5px idi) */
    /* Eğer aksiyon butonları varsa (satılmadıysa) buraya biraz margin-bottom eklenebilir */
}

.property-item-horizontal:not(:has(.property-actions)) .property-price-status {
    margin-bottom: 0; /* Aksiyon butonu olmayan kartlarda fiyat/durum sonrası boşluk olmasın */
}
.property-item-horizontal:has(.property-actions) .property-price-status {
    margin-bottom: 5px; /* Aksiyon butonu olan kartlarda fiyat/durum sonrası biraz boşluk */
}


.property-price-status .price {
    font-size: 0.9rem; /* Fiyat font boyutu (1rem idi) */
    font-weight: bold;
    color: #007bff;
    line-height: 1.3;
}

.status-badge {
    padding: 2px 5px; /* İç boşluklar (3px 6px idi) */
    border-radius: 0;
    font-size: 0.65rem; /* Font boyutu (0.7rem idi) */
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Durum renkleri aynı kalabilir */
.status-kiralik { background-color: #28a745; }
.status-satilik { background-color: #007bff; }
.status-kiralandi { background-color: #ffc107; color: #212529;}
.status-satildi { background-color: #dc3545; }
.status-belirsiz { background-color: #6c757d; }


.property-actions {
    display: flex;
    gap: 6px; /* Butonlar arası boşluk (8px idi) */
    margin-top: auto; /* Butonları en alta iter, ancak dikeyde ortalama varsa bu etkisiz kalabilir */
                        /* justify-content: center; ile .property-details-horizontal içinde dikey ortalama yapıldı */
}

.property-actions .btn {
    border-radius: 0;
    padding: 3px 6px; /* Buton iç boşlukları (4px 8px idi) */
    font-size: 0.7rem; /* Buton font boyutu (0.75rem idi) */
}
.property-actions .btn .fas {
    margin-right: 2px; /* İkon ve yazı arası boşluk (3px idi) */
    font-size: 0.65rem; /* İkon boyutu (0.7rem idi) */
}

/* Empty state stilleri genellikle aynı kalabilir, istenirse font boyutları vs. küçültülebilir */
.empty-state {
    text-align: center;
    padding: 15px 10px;
    border: 1px dashed #ddd;
    border-radius: 0;
    background-color: #f8f9fa;
}

.empty-state i {
    font-size: 26px;
    color: #adb5bd;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.empty-state .btn {
    border-radius: 0;
    font-size: 0.75rem;
    padding: 4px 8px;
}

