#notifikasi {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
   /* background: linear-gradient(135deg, #080808, #1687b7, #21bb63);*/
   
     background: linear-gradient(135deg, #080808, #222729, #232825);
    color: white;
    padding: 10px 16px;
    border-radius: 25px; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    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);
    z-index: 99;
}


#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 */
        z-index: 99;
}

#logoNotif {
    width: 70px; /* Sedikit perkecil logo */
    margin-right: 10px; /* Menambahkan lebih banyak margin */
    transition: transform 0.3s ease; /* Transisi saat logo di-hover */
        z-index: 99;
}

#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);
    }
}