#saf-sticky-footer-ad-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100vw;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 99999;
    padding: 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 50px;
}

#saf-sticky-footer-ad-container .saf-ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#saf-sticky-footer-ad-container .saf-ad-content ins.adsbygoogle {
    display: block !important;
    width: 100%;
    height: auto;
    min-height: 50px;
    text-align: center;
    background-color: transparent;
    box-sizing: border-box;
}

/* Mygtuko "X" stiliai */
#saf-sticky-footer-ad-container .saf-close-sticky-ad-button {
    position: absolute;
    top: 5px;
    /* Pakeitimas čia: perkeliame mygtuką į kairę pusę */
    left: 10px; 
    
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    width: 24px;
    height: 24px;
    padding: 0;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

/* Mygtuko "X" stiliai užvedus pele */
#saf-sticky-footer-ad-container .saf-close-sticky-ad-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.1);
}

@media (max-height: 300px) {
    /* Galite paslėpti reklamą labai žemuose ekranuose, jei reikia */
    /* #saf-sticky-footer-ad-container { display: none !important; } */
}