#notifikasi {
    display: none;
    position: fixed;
    z-index:500;
    bottom: 80px;
    left: 20px;
     background: rgba(20, 20, 20, 0.95);
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px; 
    border: 1px solid rgba(255, 200, 0, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    font-size: 12px; 
    font-weight: 500;
    letter-spacing: 0.5px;
    width: 300px;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 -3px 10px rgba(0, 0, 0, 0.2);
}


#notifikasi:hover {
    transform: translateY(-5px); 
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5), inset 0 -3px 20px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.3); /* Efek glow saat di-hover */
}

#logoNotif {
    width: 70px; /* Sedikit perkecil logo */
    margin-right: 10px; /* Menambahkan lebih banyak margin */
    transition: transform 0.3s ease; /* Transisi saat logo di-hover */
}

#notifikasi:hover #logoNotif {
    transform: scale(1.1); /* Logo sedikit membesar saat notifikasi di-hover */
}

/* Animasi muncul */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animasi menghilang */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}
