/**
 * DARK FUNNEL NOTIFICATIONS STYLING
 */

/* Dark Funnel Notification Cards */
.dark-funnel-notification-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dark-funnel-notification-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Priority styling */
.dark-funnel-notification-card.critical {
    border-left-color: #ff3b30;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.05) 0%, var(--card-bg) 100%);
}

.dark-funnel-notification-card.high {
    border-left-color: #ff9500;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.05) 0%, var(--card-bg) 100%);
}

.dark-funnel-notification-card.normal {
    border-left-color: #007aff;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, var(--card-bg) 100%);
}

/* Header */
.df-notif-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.df-notif-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.df-notif-title-area {
    flex: 1;
    min-width: 0;
}

.df-notif-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 4px 0;
}

.df-notif-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.df-notif-priority {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.df-notif-priority.priority-critical {
    background: #ff3b30;
    color: white;
}

.df-notif-priority.priority-high {
    background: #ff9500;
    color: white;
}

.df-notif-priority.priority-normal {
    background: #007aff;
    color: white;
}

/* Message */
.df-notif-message {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.df-notif-message strong {
    font-weight: 600;
    color: var(--accent-color);
}

/* Footer */
.df-notif-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.df-notif-symbol {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    padding: 4px 10px;
    background: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 6px;
}

.df-notif-type {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: capitalize;
}

/* Dark mode support */
.dark-mode .dark-funnel-notification-card {
    background: var(--card-bg-dark);
}

.dark-mode .df-notif-message {
    background: rgba(255, 255, 255, 0.03);
}

.dark-mode .df-notif-footer {
    border-top-color: rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.dark-funnel-notification-card {
    animation: slideInFromRight 0.3s ease-out;
}

/* Section divider in notification panel */
.notifications-section-divider {
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.notifications-section-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.notifications-section-title {
    display: inline-block;
    padding: 0 16px;
    background: var(--bg-color);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
