
#nea-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff8e1;
    color: #333;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
    max-width: 250px;
    font-family: sans-serif;
}
#nea-notification strong {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
@media (max-width: 600px) {
    #nea-notification {
        top: auto;
        bottom: 20px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
