/* حاوية الإشعارات الاستباقية */
#radar-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* لمنع إعاقة النقر أسفلها */
}

/* تصميم الإشعار (Glassmorphism) */
.radar-toast {
    background: rgba(15, 23, 42, 0.85); /* لون كحلي شفاف */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: auto; /* إعادة تفعيل النقر للإشعار نفسه */
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.radar-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.radar-toast-icon {
    font-size: 1.5rem;
    color: #d4af37; /* ذهبي */
}

.radar-toast-content { flex: 1; line-height: 1.5; }
.radar-toast-action {
    background: #d4af37;
    color: #0f172a;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition: 0.2s;
}
.radar-toast-action:hover { background: #fef08a; }
