#popup-ads-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
}
#popup-ads-overlay {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
}
#popup-ads-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 10% auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px #000;
}
#popup-ads-image {
    width: 100%;
    display: block;
}
#popup-ads-close {
    position: absolute;
    top: 5px; right: 10px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}
.popup-banner-wrapper {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    text-align: center;
}
.popup-banner-wrapper img {
    display: block;
    margin-bottom: 5px;
}
.remove-banner {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 3px 8px;
    cursor: pointer;
    border-radius: 3px;
}
#popup-ads-carousel {
    position: relative;
    width: 100%;
}
.carousel-slide {
    width: 100%;
    display: none;
}
.carousel-controls {
    text-align: center;
    margin-top: 10px;
}
#prev-slide, #next-slide {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    margin: 0 10px;
}
#carousel-dots {
    display: inline-block;
}
.carousel-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
}
.carousel-dot.active {
    background: #333;
}
