.scithe-ad {
    position: fixed;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 9999;
    width: 10vw; /* Ekranın %10'u kadar genişlik */
    max-width: 120px; /* Maksimum 120px'den büyük olmasın */
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    font-size: 14px;
    border-radius: 6px;
    overflow: hidden;
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
}

.scithe-ad img {
    width: 100%;
    height: auto;
    display: block;
}

.scithe-left {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.scithe-right {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.scithe-bottom {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 600px;
    padding: 10px;
}

/* Kapatma butonu */
.scithe-ad .close {
    position: absolute;
    top: 4px;
    right: 6px;
    cursor: pointer;
    font-weight: bold;
    color: red;
    font-size: 18px;
    z-index: 99999;
}

.scithe-ad .close:hover {
    color: black;
}

/* Mobil ayarları */
@media (max-width: 768px) {
    .scithe-left,
    .scithe-right {
        width: 15vw;
        max-width: 80px;
    }

    .scithe-bottom {
        bottom: 0;
        left: 0;
        transform: none;
        width: 100vw;
        border-radius: 0;
        font-size: 13px;
        padding: 8px;
    }
}