/* Sticky Reklam Styles - Düzeltilmiş */
.sticky-ad {
    position: fixed;
    top: 200px; /* Navbar'dan sonra başlasın */
    z-index: 1000;
    width: 100px; /* Daha küçük boyut */
}

.sticky-ad-left {
    left: 10px;
}

.sticky-ad-right {
    right: 10px;
}

.sticky-ad img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-height: 400px; /* Maksimum yükseklik */
    object-fit: contain; /* Resim bozulmasın */
}

.sticky-ad .ad-content {
    background: white;
    border-radius: 6px;
    padding: 5px;
    border: 1px solid #e0e0e0;
}

/* Sadece büyük masaüstü ekranlarda göster */
@media (max-width: 1199.98px) {
    .sticky-ad {
        display: none !important;
    }
}

/* Büyük ekranlar için biraz daha büyük */
@media (min-width: 1400px) {
    .sticky-ad {
        width: 140px;
    }
}