/* sc-paywall-banner - honest paywall toast.
   Rendered through webix.message(type:"info", expire:10000) with HTML body.
   The .webix_info wrapper is supplied by Webix; .sc-paywall-banner styles
   only the inner HTML our JS injects. */

.sc-paywall-banner {
    min-width: 320px;
    max-width: 420px;
    padding: 6px 4px;
    color: #1f2328;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sc-paywall-banner .sc-paywall-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #0969da;
}

.sc-paywall-banner .sc-paywall-title .sc-paywall-tier-badge {
    display: inline-block;
    padding: 1px 6px;
    margin-right: 6px;
    border-radius: 3px;
    background: #0969da;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    vertical-align: middle;
}

.sc-paywall-banner .sc-paywall-title.sc-paywall-tier-enterprise .sc-paywall-tier-badge {
    background: #6f42c1;
}

.sc-paywall-banner .sc-paywall-body {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #424a53;
}

.sc-paywall-banner .sc-paywall-quota {
    font-size: 12px;
    color: #cf222e;
    margin-bottom: 8px;
}

.sc-paywall-banner .sc-paywall-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sc-paywall-banner .sc-paywall-actions a {
    color: #0969da;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.sc-paywall-banner .sc-paywall-actions a:hover {
    text-decoration: underline;
}

.sc-paywall-banner .sc-paywall-actions a.sc-paywall-action-primary {
    color: #fff;
    background: #2da44e;
    padding: 4px 10px;
    border-radius: 4px;
}

.sc-paywall-banner .sc-paywall-actions a.sc-paywall-action-primary:hover {
    background: #2c974b;
    text-decoration: none;
}

/* Dark theme variant - relies on body[data-theme="dark"] convention used
   elsewhere in sc-extension-theme.css. */
body[data-theme="dark"] .sc-paywall-banner {
    color: #e6edf3;
}

body[data-theme="dark"] .sc-paywall-banner .sc-paywall-title {
    color: #58a6ff;
}

body[data-theme="dark"] .sc-paywall-banner .sc-paywall-body {
    color: #c9d1d9;
}

body[data-theme="dark"] .sc-paywall-banner .sc-paywall-actions a {
    color: #58a6ff;
}
