       /* CSS: Mesaj Kutusu Görünümü ve Konumu */
        #notificationBox {
            /* Sabit Konumlandırma (Sağ Alt Köşe) */
            position: fixed; 
            bottom: 20px; /* Alttan 20px boşluk */
            right: 20px; /* Sağdan 20px boşluk */
            
            /* Görünüm */
            background-color: #4CAF50; /* Yeşil Arkaplan */
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            
            /* Başlangıçta Görünmez */
            opacity: 0; 
            transition: opacity 0.5s, visibility 0.5s; /* Geçiş efekti */
            visibility: hidden; /* Görünmez yap */
            z-index: 1000; /* Diğer her şeyin üstünde olması için */
        }

        /* Gösterildiğinde Görünür Yap */
        #notificationBox.show {
            opacity: 1;
            visibility: visible;
        }