/* Geo Ads Container */
.geo-ads-container {
    margin-bottom: 20px;
}

/* Loading State */
.geo-ads-loading {
    padding: 15px;
    text-align: center;
    color: #888;
    font-style: italic;
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
}

/* Error Message */
.geo-ads-error {
    padding: 12px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
}

/* Individual Ad */
.geo-ad {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.geo-ad:hover {
    transform: scale(1.02);
}

.geo-ad:last-child {
    margin-bottom: 0;
}

.geo-ad img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Three Column Layout */
.geo-ads-three-column {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.geo-ads-column {
    padding: 0 15px;
    box-sizing: border-box;
}

.geo-ads-left {
    width: 25%;
}

.geo-ads-center {
    width: 50%;
}

.geo-ads-right {
    width: 25%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .geo-ads-left, .geo-ads-center, .geo-ads-right {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .geo-ads-left, .geo-ads-right {
        order: 2;
    }
    
    .geo-ads-center {
        order: 1;
    }
}