/**
 * Lerox Ads Pro — Frontend Styles
 *
 * Minimal CSS for ad wrappers and sticky container visual polish.
 * Loaded on every frontend page where ads may appear.
 */

/* Base ad wrapper */
.lerox-ad {
    display: block;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.lerox-ad img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Sticky container */
.lerox-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lerox-sticky-header,
.lerox-sticky-footer {
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}

.lerox-sticky-close {
    position: absolute;
    top: 4px;
    right: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    transition: background .15s;
}

.lerox-sticky-close:hover {
    background: rgba(0, 0, 0, .65);
}
