/* Meta Pixel — Consent Banner CSS (sadece GDPR consent_required=1 ise görünür) */

#mp-consent-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #1e293b;
    color: #f8fafc;
    padding: 16px 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

#mp-consent-banner .mp-consent-text {
    flex: 1;
    min-width: 280px;
}

#mp-consent-banner .mp-consent-text strong {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

#mp-consent-banner .mp-consent-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

#mp-consent-banner button {
    border: 0;
    cursor: pointer;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.15s, transform 0.15s;
    font-family: inherit;
}

#mp-consent-banner .mp-btn-accept {
    background: #1877f2;
    color: white;
}
#mp-consent-banner .mp-btn-accept:hover {
    background: #166fe5;
    transform: translateY(-1px);
}

#mp-consent-banner .mp-btn-decline {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #475569;
}
#mp-consent-banner .mp-btn-decline:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

@media (max-width: 640px) {
    #mp-consent-banner {
        padding: 12px 14px;
    }
    #mp-consent-banner .mp-consent-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
