.favorite-btn, .share-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
    position: relative;
}
.favorite-btn i {
    color: #666; /* Varsayılan gri renk */
    transition: all 0.3s ease;
}
.favorite-btn:hover i {
    transform: scale(1.2);
    color: #ff8c00; /* Hover durumunda turuncu renk */
    filter: brightness(1.1);
}
.favorite-btn.active i {
    color: #ff8c00; /* Aktif durumda turuncu renk */
}
.favorite-btn.active:hover i {
    filter: brightness(0.9); /* Aktif durumda hover'da biraz koyulaşsın */
}

/* Tıklama animasyonu */
.favorite-btn:active i {
    transform: scale(0.9);
    transition: transform 0.1s;
}
.share-popup {
    position: absolute;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    min-width: 120px;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
}
.share-popup a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 5px;
    transition: background 0.2s;
}
.share-popup a:last-child {
    margin-bottom: 0;
}
.share-popup a:hover {
    background: #f5f5f5;
}
.share-popup i {
    margin-right: 8px;
    font-size: 18px;
}
.share-popup a.whatsapp i { color: #25d366; }
.share-popup a.telegram i { color: #0088cc; }
.share-popup a.email i { color: #ea4335; }

/* Yeni eklenen dikey menü stilleri */
.ilan_actions {
    position: absolute;
    right: 8px;
    top: 50%; /* calc yerine sabit 50% kullanıyoruz */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    padding: 8px;
    border-radius: 8px;
    height: auto; /* Yüksekliği otomatik ayarlıyoruz */
    min-height: fit-content; /* Minimum yüksekliği içeriğe göre ayarlıyoruz */
}

.ilan_actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 0;
    transition: all 0.2s ease;
}

.ilan_actions i {
    font-size: 20px;
    color: #666;
    transition: color 0.2s;
}

.ilan_actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.ilan_actions a:hover i {
    color: #333;
} 