    .upxp-question-toast {
        position: fixed;
        top: 80px;
        right: 20px;
        background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
        border: 1px solid var(--upxp-primary);
        border-radius: 12px;
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 8px 32px rgba(60, 195, 14, 0.3), 0 0 0 1px rgba(60, 195, 14, 0.1);
        z-index: 10000;
        max-width: 400px;
        transform: translateX(120%);
        transition: transform 0.3s ease;
    }

    .upxp-question-toast.show {
        transform: translateX(0);
    }

    .upxp-toast-icon {
        width: 40px;
        height: 40px;
        background: rgba(60, 195, 14, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--upxp-primary);
        font-size: 18px;
        flex-shrink: 0;
    }

    .upxp-toast-content {
        flex: 1;
        min-width: 0;
    }

    .upxp-toast-content strong {
        display: block;
        color: var(--upxp-primary);
        font-size: 14px;
        margin-bottom: 4px;
    }

    .upxp-toast-content p {
        color: #ccc;
        font-size: 13px;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .upxp-toast-action {
        background: var(--upxp-primary);
        color: #000;
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
        flex-shrink: 0;
    }

    .upxp-toast-action:hover {
        background: var(--upxp-primary-hover);
        transform: scale(1.05);
    }

    .upxp-toast-close {
        position: absolute;
        top: 8px;
        right: 8px;
        background: none;
        border: none;
        color: #666;
        cursor: pointer;
        padding: 4px;
        font-size: 12px;
        transition: color 0.2s;
    }

    .upxp-toast-close:hover {
        color: #fff;
    }

    /* Estilos para notificacao de resposta (roxa) */
    .upxp-answer-toast {
        border-color: #c700ff;
        box-shadow: 0 8px 32px rgba(199, 0, 255, 0.3), 0 0 0 1px rgba(199, 0, 255, 0.1);
    }

    .upxp-toast-icon-answer {
        background: rgba(199, 0, 255, 0.15);
        color: #c700ff;
    }

    .upxp-answer-toast .upxp-toast-content strong {
        color: #c700ff;
    }

    .upxp-toast-action-answer {
        background: #c700ff;
    }

    .upxp-toast-action-answer:hover {
        background: #e040fb;
    }

    @media (max-width: 480px) {
        .upxp-question-toast {
            right: 10px;
            left: 10px;
            max-width: none;
        }
    }
