/* Sticky reklam stilleri */
.sticky-ad {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
    width: 160px;
}

.sticky-ad-left {
    left: 10px;
}

.sticky-ad-right {
    right: 10px;
}

.ad-content {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.ad-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Mobilde sticky reklamları gizle */
@media (max-width: 1199px) {
    .sticky-ad {
        display: none !important;
    }
}

/* Yatay reklamlar için */
.horizontal-ad-container {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.horizontal-ad-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}