/* Frontend Styles for Post Ad Banner Plugin */

.wp-post-ad-banner {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    text-align: center;
    clear: both;
    overflow: hidden;
}

.wp-post-ad-banner-top {
    margin-bottom: 30px;
    margin-top: 0;
}

.wp-post-ad-banner-bottom {
    margin-top: 30px;
    margin-bottom: 0;
}

/* Responsive banner styling */
.wp-post-ad-banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.wp-post-ad-banner a {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.wp-post-ad-banner a:hover {
    opacity: 0.8;
}

/* Different banner sizes */
.wp-post-ad-banner.banner-small {
    padding: 10px;
    margin: 15px 0;
}

.wp-post-ad-banner.banner-medium {
    padding: 15px;
    margin: 20px 0;
}

.wp-post-ad-banner.banner-large {
    padding: 20px;
    margin: 25px 0;
}

/* Text ad styling */
.wp-post-ad-banner .ad-text {
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.wp-post-ad-banner .ad-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.wp-post-ad-banner .ad-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.wp-post-ad-banner .ad-cta {
    display: inline-block;
    padding: 8px 16px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.wp-post-ad-banner .ad-cta:hover {
    background: #005a87;
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .wp-post-ad-banner {
        margin: 15px 0;
        padding: 12px;
    }
    
    .wp-post-ad-banner-top {
        margin-bottom: 20px;
    }
    
    .wp-post-ad-banner-bottom {
        margin-top: 20px;
    }
    
    .wp-post-ad-banner .ad-title {
        font-size: 16px;
    }
    
    .wp-post-ad-banner .ad-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .wp-post-ad-banner {
        margin: 10px 0;
        padding: 10px;
    }
    
    .wp-post-ad-banner .ad-cta {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* Special styling for different ad types */
.wp-post-ad-banner.ad-type-banner {
    background: transparent;
    border: none;
    padding: 10px 0;
}

.wp-post-ad-banner.ad-type-box {
    background: #ffffff;
    border: 2px solid #e1e1e1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wp-post-ad-banner.ad-type-subtle {
    background: transparent;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding: 15px 0;
}

/* Hide ads on print */
@media print {
    .wp-post-ad-banner {
        display: none !important;
    }
}
