/* ==========================================
   MOTIONCRAFIX SYSTEM NOTIFICATIONS (TOAST)
   ========================================== */

/* Bildirimlerin sağ üstte sabit kalmasını sağlayan container */
.notification-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

/* Genel Toast Kutusu - Tamamen senin kart ve arka plan yapınla uyumlu */
.notification-toast {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 340px;
    max-width: 460px;
    padding: 16px 20px;
    background-color: var(--bg2); /* #111111 */
    border: 1px solid var(--border); /* Hafif transparan border */
    border-radius: var(--radius); /* 16px keskinlik */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    font-family: var(--font-sans);
    animation: slideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Durumlara Göre Vurgular */
.notification-toast.success { 
    border-left: 3px solid var(--accent); /* Senin ana vurgu rengin */
}
.notification-toast.error { 
    border-left: 3px solid #ff4a4a; /* Hata durumları için standart soft kırmızı */
}
.notification-toast.info { 
    border-left: 3px solid #00bfff; 
}

/* İkon Alanları */
.notification-icon {
    font-weight: 700;
    font-size: 16px;
    user-select: none;
}
.notification-toast.success .notification-icon { color: var(--accent); }
.notification-toast.error .notification-icon { color: #ff4a4a; }

/* Mesaj Metni - Senin font ve metin renginle */
.notification-message {
    color: var(--text); /* #f0ede8 */
    font-size: 14px;
    font-weight: 400;
    flex-grow: 1;
    line-height: 1.5;
}

/* Kapatma Butonu (×) - İnce ve zarif */
.notification-close {
    background: none;
    border: none;
    color: var(--text2); /* Transparan metin rengi */
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notification-close:hover {
    color: var(--white);
    transform: scale(1.1);
}

/* Sağdan Kayarak Gelme Animasyonu */
@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}