.live-notification {
    position: fixed;
    bottom: 120px;
    left: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 15px;
    max-width: 250px;
    z-index: 1000;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
    border-left: 4px solid #fa9e1b;
}

.live-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 24px;
    color: #fa9e1b;
}

.notification-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.notification-text strong {
    color: #333;
    font-weight: 600;
}

.notification-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    font-weight: bold;
}

.notification-close:hover {
    color: #333;
}

@media screen and (max-width: 767px) {
    .live-notification {
        bottom: 100px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
}