.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid #f1f3f4;
    transition: background 0.3s ease;
}

.notification-item:hover {
    background: #f8f9fa;
}

.notification-item.unread {
    background: rgba(194, 24, 91, 0.05);
    border-left: 3px solid #c2185b;
}

.notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.notification-icon.order {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.notification-icon.message {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.notification-icon.payment {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.notification-icon.system {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.notification-message {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.notification-time {
    color: #999;
    font-size: 0.7rem;
}