/* ads/ads-style.css */

/* The Container */
.ad-slot {
    width: 100%;
    max-width: 728px;
    min-height: 90px;
    max-height: 100px;
    background: #ffffff;
    /* Typical ad background */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    margin: 10px 0;
}

/* The "Real-Looking" Mock Ad */
.real-mock-ad {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 5px;
    font-family: Arial, sans-serif;
    color: #333;
}

.ad-info {
    font-size: 9px;
    color: #999;
    text-align: right;
    padding-right: 5px;
}

.ad-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 10px;
}

.ad-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #00d4ff 0%, #e21dff 100%);
    border-radius: 4px;
    flex-shrink: 0;
}

.ad-text {
    flex: 1;
    overflow: hidden;
}

.ad-title {
    font-size: 14px;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 2px;
}

.ad-desc {
    font-size: 11px;
    color: #5f6368;
    line-height: 1.2;
}

.ad-button {
    background: #1a73e8;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}