/**
 * ZimAdsense Frontend Styles
 *
 * @package ZimAdsenseIntegration
 */

.zimadsense-ad-wrapper {
    margin: 20px 0;
    text-align: center;
    clear: both;
}

.zimadsense-ad-wrapper:first-child {
    margin-top: 0;
}

.zimadsense-ad-wrapper:last-child {
    margin-bottom: 0;
}

/* Ad size specific styles */
.zimadsense-ad-300x250 {
    min-height: 250px;
}

.zimadsense-ad-728x90 {
    min-height: 90px;
}

.zimadsense-ad-320x50 {
    min-height: 50px;
}

.zimadsense-ad-300x600 {
    min-height: 600px;
}

.zimadsense-ad-970x250 {
    min-height: 250px;
}

.zimadsense-ad-160x600 {
    min-height: 600px;
}

/* Responsive ad containers */
@media screen and (max-width: 768px) {
    .zimadsense-ad-728x90,
    .zimadsense-ad-970x250 {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Ensure ads don't break layout */
.MainAdverTiseMentDiv {
    display: inline-block;
    position: relative;
    z-index: 0;
}

/* Loading state */
.zimadsense-ad-wrapper.loading {
    background: #f0f0f0;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.zimadsense-ad-wrapper.loading::after {
    content: 'Loading ad...';
    color: #666;
    font-size: 14px;
}

