/* ═══════════════════════════════════════════════════════════
   NP2 Advertising Module Styles
   ═══════════════════════════════════════════════════════════ */

/* ─── Ad Type Selector ──────────────────────────────────── */

.ad-type-selector {
    display: flex;
    gap: 8px;
}

.ad-type-option {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.15s;
}

.ad-type-option input {
    display: none;
}

.ad-type-option.ad-type-active {
    opacity: 1;
}

.ad-type-option:hover {
    opacity: 0.8;
}

/* ─── Classified Preview ────────────────────────────────── */

.ad-classified-preview {
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 6px;
    font-family: 'Georgia', serif;
    font-size: 13px;
    line-height: 1.5;
    color: #111827;
}

.ad-classified-bordered {
    border: 2px solid #374151;
}

/* ─── Rate Card Cards ───────────────────────────────────── */

.rc-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.rc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.rc-card-info h3 {
    margin: 0 0 4px 0;
    font-size: 15px;
}

.rc-card-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.rc-card-current {
    padding: 8px 16px;
    font-size: 13px;
    color: #374151;
    background: #f9fafb;
}

.rc-card-desc {
    padding: 8px 16px;
    font-size: 12px;
    color: #6b7280;
}

/* ─── Creative Row ──────────────────────────────────────── */

.ad-creative-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 13px;
}

.ad-creative-row:last-child {
    border-bottom: none;
}