/* Styles for AI search welcome popup and badge */
#xda-welcome {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}
#xda-welcome .xda-card {
    width: min(480px, 92vw);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    font-family: sans-serif;
}
#xda-welcome .xda-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
#xda-welcome .xda-body {
    font-size: 14px;
    color: #333;
    margin-bottom: 14px;
}
#xda-welcome .xda-actions {
    text-align: right;
}
#xda-welcome button#xda-ok {
    background: #111;
    color: #fff;
    border: 0;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}
.xda-ai-badge {
    margin-left: 8px;
    font-size: 11px;
    background: #111;
    color: #fff;
    border-radius: 999px;
    padding: 2px 8px;
    vertical-align: middle;
    white-space: nowrap;
}