#liveNotification {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9999;
    pointer-events: none;
    max-width: 320px;
}

.live-notification-card {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    font-size: 14px;
    color: #0f172a;
    display: inline-flex;
    gap: 4px;
    align-items: center;
    opacity: 0;
    transform: translateX(-20px);
    animation: liveNoticeIn 0.5s ease forwards;
}

.live-notification-card.hide {
    animation: liveNoticeOut 0.5s ease forwards;
}

.live-notification-card .ln-name,
.live-notification-card .ln-module {
    font-weight: 700;
    color: #1D4ED8;
}

@keyframes liveNoticeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes liveNoticeOut {
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

@media (max-width: 768px) {
    #liveNotification {
        left: 10px;
        bottom: 12px;
        max-width: 85vw;
    }
    .live-notification-card {
        font-size: 12px;
        padding: 8px 12px;
    }
}
