#lkfv-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background-color: #2a2a2a;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    font-size: 15px;
    max-width: 320px;
    animation: fadein 0.5s;
}
.lkfv-close {
    position: absolute;
    top: 4px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}
@keyframes fadein {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
