#mrn-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px;
    border-radius: 10px;
    z-index: 9999;
    max-width: 320px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#mrn-popup.show {
    opacity: 1;
}

#mrn-text strong { font-weight: bold; }
#mrn-text em { font-style: italic; }
#mrn-text ul, #mrn-text ol { margin: 6px 0 6px 18px; padding: 0; }
#mrn-text li { margin-bottom: 2px; }
#mrn-text p { margin: 0 0 6px; }
#mrn-text a { color: inherit; text-decoration: underline; }

#mrn-close {
    margin-top: 10px;
    cursor: pointer;
}