/**
 * تنسيقات الإشعارات
 */

.notification-item {
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.notification-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dark-mode .notification-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.notification-item.unread {
    border-right: 3px solid var(--primary-color);
    background-color: rgba(13, 110, 253, 0.05);
}

.dark-mode .notification-item.unread {
    background-color: rgba(96, 165, 250, 0.1);
}

/* تنسيقات القائمة المنسدلة للإشعارات */
.notifications-dropdown .dropdown-menu {
    width: 350px;
    max-height: 450px;
    overflow-y: auto;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.dark-mode .notifications-dropdown .dropdown-menu {
    background-color: var(--dropdown-bg);
    border-color: var(--border-color);
}

/* الزر والعداد */
#notificationsDropdown {
    position: relative;
}

#notifications-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
}

/* تنسيقات للهاتف المحمول */
@media (max-width: 576px) {
    .notifications-dropdown .dropdown-menu {
        width: 300px;
    }
}

/* تنسيق دلائل أيقونات الإشعارات */
.notification-icon-success {
    color: var(--success-color);
}

.notification-icon-info {
    color: var(--primary-color);
}

.notification-icon-warning {
    color: var(--warning-color);
}

.notification-icon-danger {
    color: var(--danger-color);
}

/* تنسيقات إضافية للوضع الليلي */
.dark-mode .notification-item {
    color: var(--text-color);
}

.dark-mode .notification-item small {
    color: var(--text-muted);
}

.dark-mode .notifications-dropdown .btn-link {
    color: var(--primary-color);
}

.dark-mode .notifications-dropdown .btn-link:hover {
    color: var(--accent-color);
}

.dark-mode .notifications-dropdown .dropdown-menu {
    box-shadow: var(--shadow-lg);
} 