/**
 * Cache Temizleyici Pro - Public Stilleri
 * Bu dosya frontend'de kullanılan stiller içindir
 */

/* Cache temizleme bildirimi (opsiyonel) */
.ct-cache-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2271b1;
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    font-size: 14px;
    animation: ct-slide-in 0.3s ease;
}

@keyframes ct-slide-in {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.ct-cache-notification.ct-hiding {
    animation: ct-slide-out 0.3s ease;
}

@keyframes ct-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Force no-cache on specific elements */
img[data-no-cache],
.no-cache {
    /* Browser'a cache yapmaması için hint */
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .ct-cache-notification {
        left: 20px;
        right: 20px;
        bottom: 10px;
    }
}
