/* Promoted Coins table background fix */
.dark-theme .crypto-promoted-section,
.dark-theme .table-responsive,
.dark-theme .crypto-promoted-table,
.dark-theme .crypto-promoted-table tbody tr {
    background-color: #1A202C !important;
}

.dark-theme .crypto-promoted-table td.sticky-column {
    background-color: #1A202C !important;
}

/* Favori butonu düzenlemeleri */
.favorite-toggle {
    background: transparent;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    transition: all 0.2s ease;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    position: relative;
    border-radius: 50%;
}

.favorite-toggle:hover, 
.favorite-toggle:active,
.favorite-toggle:focus {
    transform: scale(1.2);
    color: #FFCC00;
    background: rgba(255, 215, 0, 0.1);
    border: none;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.favorite-toggle .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    transition: all 0.2s ease;
}

.favorite-toggle:hover .dashicons {
    transform: scale(1.1);
}

/* Processing animasyonu */
.favorite-toggle.processing {
    pointer-events: none;
    opacity: 0.7;
}

.favorite-toggle.processing .dashicons {
    animation: favorite-processing-spin 1s linear infinite;
}

@keyframes favorite-processing-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Favori durumu animasyonları */
@keyframes pulse-star {
    0% { transform: scale(1); color: #FFD700; }
    50% { transform: scale(1.5); color: #FFCC00; }
    100% { transform: scale(1); color: #FFD700; }
}

.favorite-toggle.pulse-animation .dashicons {
    animation: pulse-star 0.5s ease-in-out;
}

@keyframes fade-out-star {
    0% { opacity: 1; transform: scale(1.2); color: #FFD700; }
    50% { opacity: 0.5; transform: scale(0.8); color: rgba(255, 255, 255, 0.5); }
    100% { opacity: 1; transform: scale(1); color: rgba(255, 255, 255, 0.3); }
}

.favorite-toggle.fade-out-animation .dashicons {
    animation: fade-out-star 0.5s ease-in-out;
}

/* Yıldız ikonları durumları */
.favorite-toggle .dashicons-star-empty {
    color: rgba(255, 255, 255, 0.4);
}

.favorite-toggle:hover .dashicons-star-empty {
    color: rgba(255, 215, 0, 0.7);
}

.favorite-toggle .dashicons-star-filled {
    color: #FFD700;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.5);
}

.favorite-toggle:hover .dashicons-star-filled {
    color: #FFCC00;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}

/* Favori satırları vurgulama */
tr.is-favorite {
    background-color: rgba(255, 215, 0, 0.05) !important;
    border-left: 3px solid rgba(255, 215, 0, 0.3);
}

tr.is-favorite:hover {
    background-color: rgba(255, 215, 0, 0.1) !important;
}

/* Mobil cihazlar için iyileştirmeler */
@media (max-width: 768px) {
    .favorite-toggle {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .favorite-toggle .dashicons {
        width: 26px;
        height: 26px;
        font-size: 26px;
    }
}

/* Karanlık tema uyumluluğu */
.dark-theme .favorite-toggle .dashicons-star-empty {
    color: rgba(255, 255, 255, 0.3);
}

.dark-theme .favorite-toggle:hover .dashicons-star-empty {
    color: rgba(255, 215, 0, 0.6);
}

.dark-theme tr.is-favorite {
    background-color: rgba(255, 215, 0, 0.03) !important;
    border-left: 3px solid rgba(255, 215, 0, 0.2);
}

.dark-theme tr.is-favorite:hover {
    background-color: rgba(255, 215, 0, 0.08) !important;
}

/* Coin sayacı (Load More üstündeki yazı) */
.coin-counter {
    color: #FFD700;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.coin-counter #displayed-coins,
.coin-counter #total-coins {
    color: #FFFFFF;
    background: rgba(255, 215, 0, 0.2);
    padding: 2px 5px;
    border-radius: 4px;
    margin: 0 3px;
} 