/* Pro Ads Sticky Bar v1.1 */

#pasb-container {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 728px;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.pasb-pos-bottom {
    bottom: 0;
}

.pasb-pos-top {
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#pasb-content {
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
}

#pasb-content iframe {
    display: block;
    border: none;
    max-width: 100%;
}

#pasb-close-btn {
    position: absolute;
    right: 0;
    top: -25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    width: 30px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    padding: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    font-size: 20px;
    color: #666;
    line-height: 1;
}

#pasb-close-btn:hover {
    background: #f5f5f5;
    color: #333;
}

@media (max-width: 768px) {
    #pasb-container {
        width: 100%;
        max-width: 100%;
        padding: 5px;
        left: 0;
        transform: none;
    }
}
